Summary: | Removing Akregator component in kontact leaves stale tray icon | ||
---|---|---|---|
Product: | [Applications] akregator | Reporter: | Stefan Borggraefe <Stefan.Borggraefe> |
Component: | kontact plugin | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Stefan Borggraefe
2006-07-01 22:35:29 UTC
Confirmed - looks like it only affects the tray icon though, there aren't multiple parts instantiated (tray icon context menu entries have no effect, no akregator in dcop...) SVN commit 559615 by osterfeld: remove tray icon when disabling akregator component in kontact BUG: 130127 M +1 -0 ChangeLog M +2 -0 src/akregator_part.cpp M +0 -2 src/librss/tools_p.cpp --- branches/KDE/3.5/kdepim/akregator/ChangeLog #559614:559615 @@ -7,6 +7,7 @@ Bug fixes: + 2006/07/07 Remove tray icon when disabling Akregator part in Kontact (#130127) -fo 2006/07/07 Fix a crash on shutdown occurring in ProgressManager (#130377) -fo 2006/06/25 Fix context menus in browser tab, show appriopriate entries when text is selected (copy action) or the cursor is over a link --- branches/KDE/3.5/kdepim/akregator/src/akregator_part.cpp #559614:559615 @@ -263,6 +263,8 @@ saveTagSet(m_tagSetPath); m_view->slotOnShutdown(); //delete m_view; + delete TrayIcon::getInstance(); + TrayIcon::setInstance(0L); delete m_storage; m_storage = 0; //delete m_actionManager; --- branches/KDE/3.5/kdepim/akregator/src/librss/tools_p.cpp #559614:559615 @@ -230,8 +230,6 @@ if (name.isNull()) name = email; - - QString author; if (!email.isNull()) return QString("<a href=\"mailto:%1\">%2</a>").arg(email).arg(name); |