diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:01 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:01 -0500 |
commit | ea81993240ce4360b2136b45753262067e5c69de (patch) | |
tree | 2658a5d7381f5c376351a46e4298642567ef2fbd | |
parent | 8455a5fe78267e9d851ff658e2db295b8ec64648 (diff) | |
download | yakuake-ea81993240ce4360b2136b45753262067e5c69de.tar.gz yakuake-ea81993240ce4360b2136b45753262067e5c69de.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
-rw-r--r-- | yakuake/src/main_window.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/yakuake/src/main_window.cpp b/yakuake/src/main_window.cpp index cdee080..5f63d8d 100644 --- a/yakuake/src/main_window.cpp +++ b/yakuake/src/main_window.cpp @@ -117,16 +117,16 @@ MainWindow::MainWindow(TQWidget * parent, const char * name) : "Alt+Ctrl+S", TQT_TQOBJECT(this), TQT_SLOT(slotInteractiveRename()), actionCollection(), "edit_name"); - action = new TDEAction(i18n("Increase Width"), SmallIcon("viewmag+"), + action = new TDEAction(i18n("Increase Width"), SmallIcon("zoom-in"), "Alt+Shift+Right", TQT_TQOBJECT(this), TQT_SLOT(slotIncreaseSizeW()), actionCollection(), "increasew"); - action = new TDEAction(i18n("Decrease Width"), SmallIcon("viewmag-"), + action = new TDEAction(i18n("Decrease Width"), SmallIcon("zoom-out"), "Alt+Shift+Left", TQT_TQOBJECT(this), TQT_SLOT(slotDecreaseSizeW()), actionCollection(), "decreasew"); - action = new TDEAction(i18n("Increase Height"), SmallIcon("viewmag+"), + action = new TDEAction(i18n("Increase Height"), SmallIcon("zoom-in"), "Alt+Shift+Down", TQT_TQOBJECT(this), TQT_SLOT(slotIncreaseSizeH()), actionCollection(), "increaseh"); - action = new TDEAction(i18n("Decrease Height"), SmallIcon("viewmag-"), + action = new TDEAction(i18n("Decrease Height"), SmallIcon("zoom-out"), "Alt+Shift+Up", TQT_TQOBJECT(this), TQT_SLOT(slotDecreaseSizeH()), actionCollection(), "decreaseh"); |