diff options
Diffstat (limited to 'tdemid/tdemidframe.cpp')
-rw-r--r-- | tdemid/tdemidframe.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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()), |