Bring previous and next icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent 694c2b4f9c
commit 8dac28107b

@ -97,11 +97,11 @@ MainWindow::MainWindow(TQWidget * parent, const char * name) :
0, TQT_TQOBJECT(this), TQT_SLOT(slotAddSessionQuad()), 0, TQT_TQOBJECT(this), TQT_SLOT(slotAddSessionQuad()),
actionCollection(), "add_tab_quad"); 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()), "Ctrl+Shift+Up", TQT_TQOBJECT(this), TQT_SLOT(slotFocusNextSplit()),
actionCollection(), "focus_next_terminal"); 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()), "Ctrl+Shift+Down", TQT_TQOBJECT(this), TQT_SLOT(slotFocusPreviousSplit()),
actionCollection(), "focus_previous_terminal"); actionCollection(), "focus_previous_terminal");
@ -152,10 +152,10 @@ MainWindow::MainWindow(TQWidget * parent, const char * name) :
createTitleBar(); createTitleBar();
createTabsBar(); 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()), "Shift+Right", TQT_TQOBJECT(tab_bar), TQT_SLOT(slotSelectNextItem()),
actionCollection(), "next_tab"); 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()), "Shift+Left", TQT_TQOBJECT(tab_bar), TQT_SLOT(slotSelectPreviousItem()),
actionCollection(), "previous_tab"); actionCollection(), "previous_tab");

Loading…
Cancel
Save