diff options
author | Timothy Pearson <[email protected]> | 2014-10-11 21:45:16 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-11 21:45:16 -0500 |
commit | 8dac28107b0e023d277a8d33b14d55e1be91aea9 (patch) | |
tree | d3331430624292a1c2b6c6cece88071746f7564b | |
parent | 694c2b4f9cf7a27209e789b65befe44209713e74 (diff) | |
download | yakuake-8dac28107b0e023d277a8d33b14d55e1be91aea9.tar.gz yakuake-8dac28107b0e023d277a8d33b14d55e1be91aea9.zip |
Bring previous and next 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 f649c5b..119d9c1 100644 --- a/yakuake/src/main_window.cpp +++ b/yakuake/src/main_window.cpp @@ -97,11 +97,11 @@ MainWindow::MainWindow(TQWidget * parent, const char * name) : 0, TQT_TQOBJECT(this), TQT_SLOT(slotAddSessionQuad()), actionCollection(), "add_tab_quad"); - action = new TDEAction(i18n("Go to Next Terminal"), SmallIcon("next"), + action = new TDEAction(i18n("Go to Next Terminal"), SmallIcon("go-next"), "Ctrl+Shift+Up", TQT_TQOBJECT(this), TQT_SLOT(slotFocusNextSplit()), actionCollection(), "focus_next_terminal"); - action = new TDEAction(i18n("Go to Previous Terminal"), SmallIcon("previous"), + action = new TDEAction(i18n("Go to Previous Terminal"), SmallIcon("go-previous"), "Ctrl+Shift+Down", TQT_TQOBJECT(this), TQT_SLOT(slotFocusPreviousSplit()), actionCollection(), "focus_previous_terminal"); @@ -152,10 +152,10 @@ MainWindow::MainWindow(TQWidget * parent, const char * name) : createTitleBar(); createTabsBar(); - action = new TDEAction(i18n("Go to Next Session"), SmallIcon("next"), + action = new TDEAction(i18n("Go to Next Session"), SmallIcon("go-next"), "Shift+Right", TQT_TQOBJECT(tab_bar), TQT_SLOT(slotSelectNextItem()), actionCollection(), "next_tab"); - action = new TDEAction(i18n("Go to Previous Session"), SmallIcon("previous"), + action = new TDEAction(i18n("Go to Previous Session"), SmallIcon("go-previous"), "Shift+Left", TQT_TQOBJECT(tab_bar), TQT_SLOT(slotSelectPreviousItem()), actionCollection(), "previous_tab"); |