Summary: | Contact list does not display on startup | ||
---|---|---|---|
Product: | [Unmaintained] kopete | Reporter: | Ken Zalewski <kennyz> |
Component: | Main Application | Assignee: | Kopete Developers <kopete-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 0.9.0 | ||
Target Milestone: | --- | ||
Platform: | Slackware | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Ken Zalewski
2004-08-22 04:43:05 UTC
CVS commit by mattr: Fix bug 87727. saveOptions() was in the destructor, which meant the window state was always hidden. CCMAIL: 87727@bugs.kde.org M +1 -1 kopetewindow.cpp 1.200 --- kdenetwork/kopete/kopete/kopetewindow.cpp #1.199:1.200 @@ -247,5 +247,4 @@ void KopeteWindow::initSystray() KopeteWindow::~KopeteWindow() { - saveOptions(); delete m_pluginConfig; } @@ -460,4 +459,5 @@ void KopeteWindow::closeEvent( QCloseEve void KopeteWindow::slotQuit() { + saveOptions(); KopeteApplication *app = static_cast<KopeteApplication *>( kapp ); app->quitKopete(); CVS commit by mattr: Backport the fix for bug 87727. This should be in KDE 3.3.1 CCMAIL: 87727-done@bugs.kde.org M +1 -1 kopetewindow.cpp 1.199.2.1 --- kdenetwork/kopete/kopete/kopetewindow.cpp #1.199:1.199.2.1 @@ -247,5 +247,4 @@ void KopeteWindow::initSystray() KopeteWindow::~KopeteWindow() { - saveOptions(); delete m_pluginConfig; } @@ -460,4 +459,5 @@ void KopeteWindow::closeEvent( QCloseEve void KopeteWindow::slotQuit() { + saveOptions(); KopeteApplication *app = static_cast<KopeteApplication *>( kapp ); app->quitKopete(); |