summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--yakuake/src/main_window.cpp8
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");