diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:10 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:10 -0500 |
commit | 65dde0a768bcc214233c58d5473e8e9f9c039ea7 (patch) | |
tree | 3af974e352ba22355e00664104a16edf9a2b2bf2 /kooka | |
parent | 50e3d450c5b66e77578534f80c4e604b36c56c4d (diff) | |
download | tdegraphics-65dde0a768bcc214233c58d5473e8e9f9c039ea7.tar.gz tdegraphics-65dde0a768bcc214233c58d5473e8e9f9c039ea7.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 'kooka')
-rw-r--r-- | kooka/kooka.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kooka/kooka.cpp b/kooka/kooka.cpp index 58c368ae..5905c302 100644 --- a/kooka/kooka.cpp +++ b/kooka/kooka.cpp @@ -204,12 +204,12 @@ actionCollection()); TQT_TQOBJECT(m_view), TQT_SLOT( slOpenCurrInGraphApp() ), actionCollection(), "openInGraphApp" ); - act = new TDEAction(i18n("&Rotate Image Clockwise"), "rotate_cw", CTRL+Key_R, + act = new TDEAction(i18n("&Rotate Image Clockwise"), "object-rotate-right", CTRL+Key_R, TQT_TQOBJECT(this), TQT_SLOT( slRotateClockWise() ), actionCollection(), "rotateClockwise" ); m_view->connectViewerAction( act ); - act = new TDEAction(i18n("Rotate Image Counter-Clock&wise"), "rotate_ccw", CTRL+Key_W, + act = new TDEAction(i18n("Rotate Image Counter-Clock&wise"), "object-rotate-left", CTRL+Key_W, TQT_TQOBJECT(this), TQT_SLOT( slRotateCounterClockWise() ), actionCollection(), "rotateCounterClockwise" ); m_view->connectViewerAction( act ); |