diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:04 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:04 -0500 |
commit | 5a97cc4a6ea29f3ac6393cf0f42a082d694c99df (patch) | |
tree | 2f18aa46cde3398a971ec754913e33d7b3d3e0cf /ksayit | |
parent | 00d2ec14f24d1f263ca75890edf796b31ccb45d7 (diff) | |
download | tdeaccessibility-5a97cc4a6ea29f3ac6393cf0f42a082d694c99df.tar.gz tdeaccessibility-5a97cc4a6ea29f3ac6393cf0f42a082d694c99df.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 'ksayit')
-rw-r--r-- | ksayit/src/ksayitsystemtray.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ksayit/src/ksayitsystemtray.cpp b/ksayit/src/ksayitsystemtray.cpp index 4a8ac59..43452ca 100644 --- a/ksayit/src/ksayitsystemtray.cpp +++ b/ksayit/src/ksayitsystemtray.cpp @@ -52,21 +52,21 @@ void KSayItSystemTray::initActions() // User defined actions say = new TDEAction(i18n("Say"), - "player_play", + "media-playback-start", 0, TQT_TQOBJECT(this), TQT_SLOT (slotSayActivated()), actionCollection(), "say_it"); shutup = new TDEAction(i18n("Shut Up"), - "player_stop", + "media-playback-stop", 0, TQT_TQOBJECT(this), TQT_SLOT (slotStopActivated()), actionCollection(), "shut_up"); pause = new TDEAction (i18n("Pause"), - "player_pause", + "media-playback-pause", 0, TQT_TQOBJECT(this), TQT_SLOT (slotPauseActivated()), actionCollection(), |