|
|
|
@ -105,11 +105,11 @@ MainWindow::MainWindow(TQWidget * parent, const char * name) :
|
|
|
|
|
"Ctrl+Shift+Down", TQT_TQOBJECT(this), TQT_SLOT(slotFocusPreviousSplit()),
|
|
|
|
|
actionCollection(), "focus_previous_terminal");
|
|
|
|
|
|
|
|
|
|
action = new TDEAction(i18n("Paste"), SmallIcon("editpaste"), SHIFT+Key_Insert,
|
|
|
|
|
action = new TDEAction(i18n("Paste"), SmallIcon("edit-paste"), SHIFT+Key_Insert,
|
|
|
|
|
TQT_TQOBJECT(this), TQT_SLOT(slotPasteClipboard()),
|
|
|
|
|
actionCollection(), "paste_clipboard");
|
|
|
|
|
|
|
|
|
|
action = new TDEAction(i18n("Paste Selection"), SmallIcon("editpaste"),
|
|
|
|
|
action = new TDEAction(i18n("Paste Selection"), SmallIcon("edit-paste"),
|
|
|
|
|
CTRL+SHIFT+Key_Insert, TQT_TQOBJECT(this), TQT_SLOT(slotPasteSelection()),
|
|
|
|
|
actionCollection(), "paste_selection");
|
|
|
|
|
|
|
|
|
@ -167,7 +167,7 @@ MainWindow::MainWindow(TQWidget * parent, const char * name) :
|
|
|
|
|
"Ctrl+Shift+Right", TQT_TQOBJECT(tab_bar), TQT_SLOT(slotMoveItemRight()),
|
|
|
|
|
actionCollection(), "move_tab_right");
|
|
|
|
|
|
|
|
|
|
remove_tab_action = new TDEAction(i18n("Close Session"), SmallIcon("fileclose"), 0,
|
|
|
|
|
remove_tab_action = new TDEAction(i18n("Close Session"), SmallIcon("window-close"), 0,
|
|
|
|
|
TQT_TQOBJECT(this), 0, actionCollection(), "remove_tab");
|
|
|
|
|
connect(remove_tab_action, TQT_SIGNAL(activated(TDEAction::ActivationReason, TQt::ButtonState)),
|
|
|
|
|
TQT_TQOBJECT(this), TQT_SLOT(slotHandleRemoveSession(TDEAction::ActivationReason, TQt::ButtonState)));
|
|
|
|
|