From ff04cdc4c00513986154504bb6efc1ea765063d4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 20:10:11 -0500 Subject: 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 --- noatun/modules/systray/systray.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'noatun/modules/systray') 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("

%1

").arg(i18n("Noatun - Stopped"))); } -- cgit v1.2.1