summaryrefslogtreecommitdiffstats
path: root/tdemid
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:11 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:11 -0500
commitff04cdc4c00513986154504bb6efc1ea765063d4 (patch)
tree90318ddb9338b8f9aa25c137360e30eb13423ec8 /tdemid
parent88d0e2289d8cf1742ff4e50485b06eda96946c9c (diff)
downloadtdemultimedia-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 'tdemid')
-rw-r--r--tdemid/tdemid_part.cpp4
-rw-r--r--tdemid/tdemidframe.cpp10
2 files changed, 7 insertions, 7 deletions
diff --git a/tdemid/tdemid_part.cpp b/tdemid/tdemid_part.cpp
index b6e5b63e..81c31973 100644
--- a/tdemid/tdemid_part.cpp
+++ b/tdemid/tdemid_part.cpp
@@ -77,11 +77,11 @@ TDEInstance *KMidFactory::instance()
setWidget(widget);
// create and connect our actions
- (void)new TDEAction(i18n("Play"), "player_play", 0, this,
+ (void)new TDEAction(i18n("Play"), "media-playback-start", 0, this,
TQT_SLOT(slotPlay()), actionCollection(),
"play");
- (void)new TDEAction(i18n("Stop"), "player_stop", 0, this,
+ (void)new TDEAction(i18n("Stop"), "media-playback-stop", 0, this,
TQT_SLOT(slotStop()), actionCollection(),
"stop");
diff --git a/tdemid/tdemidframe.cpp b/tdemid/tdemidframe.cpp
index 870a1db1..fbfaa4c0 100644
--- a/tdemid/tdemidframe.cpp
+++ b/tdemid/tdemidframe.cpp
@@ -91,17 +91,17 @@ tdemidFrame::tdemidFrame(const char *name)
TQT_SLOT(file_SaveLyrics()), actionCollection(), "file_save_lyrics");
KStdAction::quit(TQT_TQOBJECT(kapp), TQT_SLOT(quit()), actionCollection());
- (void)new TDEAction(i18n("&Play"), "player_play", TQt::Key_Space,
+ (void)new TDEAction(i18n("&Play"), "media-playback-start", TQt::Key_Space,
TQT_TQOBJECT(tdemidclient), TQT_SLOT(slotPlay()), actionCollection(), "song_play");
- (void)new TDEAction(i18n("P&ause"), "player_pause", TQt::Key_P, TQT_TQOBJECT(tdemidclient),
+ (void)new TDEAction(i18n("P&ause"), "media-playback-pause", TQt::Key_P, TQT_TQOBJECT(tdemidclient),
TQT_SLOT(slotPause()), actionCollection(), "song_pause");
- (void)new TDEAction(i18n("&Stop"), "player_stop", TQt::Key_Backspace,
+ (void)new TDEAction(i18n("&Stop"), "media-playback-stop", TQt::Key_Backspace,
TQT_TQOBJECT(tdemidclient), TQT_SLOT(slotStop()), actionCollection(), "song_stop");
- (void)new TDEAction(i18n("P&revious Song"), "player_start", Key_Left,
+ (void)new TDEAction(i18n("P&revious Song"), "media-skip-backward", Key_Left,
TQT_TQOBJECT(tdemidclient), TQT_SLOT(slotPrevSong()), actionCollection(),
"song_previous");
- (void)new TDEAction(i18n("&Next Song"), "player_end", Key_Right,
+ (void)new TDEAction(i18n("&Next Song"), "media-skip-forward", Key_Right,
TQT_TQOBJECT(tdemidclient), TQT_SLOT(slotNextSong()), actionCollection(),
"song_next");
(void)new TDEToggleAction(i18n("&Loop"), 0, TQT_TQOBJECT(this), TQT_SLOT(song_Loop()),