diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:11 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:11 -0500 |
commit | ff04cdc4c00513986154504bb6efc1ea765063d4 (patch) | |
tree | 90318ddb9338b8f9aa25c137360e30eb13423ec8 /noatun/modules | |
parent | 88d0e2289d8cf1742ff4e50485b06eda96946c9c (diff) | |
download | tdemultimedia-ff04cdc4c00513986154504bb6efc1ea765063d4.tar.gz tdemultimedia-ff04cdc4c00513986154504bb6efc1ea765063d4.zip |
Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance
Diffstat (limited to 'noatun/modules')
-rw-r--r-- | noatun/modules/systray/systray.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noatun/modules/systray/systray.cpp b/noatun/modules/systray/systray.cpp index 7f7cf7dc..da0590ce 100644 --- a/noatun/modules/systray/systray.cpp +++ b/noatun/modules/systray/systray.cpp @@ -118,7 +118,7 @@ NoatunSystray::NoatunSystray() : TDEMainWindow(0, "NoatunSystray"), Plugin(), mTray->show(); trayBase = renderIcon(BASEICON, TQString()); - trayStatus = renderIcon(BASEICON, "player_stop"); + trayStatus = renderIcon(BASEICON, "media-playback-stop"); mTray->changeTitle(*trayBase, i18n("Noatun")); showingTrayStatus = false; @@ -198,12 +198,12 @@ void NoatunSystray::slotPlayPause() if(napp->player()->isPaused()) { - changeTray("player_pause"); + changeTray("media-playback-pause"); status = i18n("Noatun - Paused"); } else { - changeTray("player_play"); + changeTray("media-playback-start"); status = i18n("Noatun - Playing"); } @@ -255,7 +255,7 @@ void NoatunSystray::slotStopped() { if(!napp->player()->current()) return; - changeTray("player_stop"); + changeTray("media-playback-stop"); setTipText(TQString("<qt><nobr><h4>%1</h4></nobr></qt>").arg(i18n("Noatun - Stopped"))); } |