diff options
Diffstat (limited to 'kshutdown/msystemtray.cpp')
-rw-r--r-- | kshutdown/msystemtray.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kshutdown/msystemtray.cpp b/kshutdown/msystemtray.cpp index e97eb2f..7307611 100644 --- a/kshutdown/msystemtray.cpp +++ b/kshutdown/msystemtray.cpp @@ -134,7 +134,7 @@ MSystemTray::MSystemTray() _flashCount(0), _saveIcon(0) { - setPixmap(SmallIcon("exit", TDEIcon::SizeSmallMedium)); // 22x22 + setPixmap(SmallIcon("system-log-out", TDEIcon::SizeSmallMedium)); // 22x22 // TODO: 2.0: mouse wheel: decrease/increase end time by 5min. (?) @@ -147,7 +147,7 @@ MSystemTray::MSystemTray() connect(_flashTimer, SIGNAL(timeout()), SLOT(slotFlashTimeout())); // init icons - KPixmap pm(SmallIcon("exit", TDEIcon::SizeSmallMedium)); + KPixmap pm(SmallIcon("system-log-out", TDEIcon::SizeSmallMedium)); _flashIcon = new KPixmap(KPixmapEffect::fade(pm, 0.7f, white)); show(); @@ -194,7 +194,7 @@ void MSystemTray::slotFade() _fadeValue = 0.0f; } } - KPixmap p(SmallIcon("exit", TDEIcon::SizeSmallMedium)); + KPixmap p(SmallIcon("system-log-out", TDEIcon::SizeSmallMedium)); setPixmap(KPixmapEffect::fade(p, _fadeValue, KS_TRAY_FADE_COLOR)); } |