From 8455a5fe78267e9d851ff658e2db295b8ec64648 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 15:43:52 -0500 Subject: [PATCH] Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance --- yakuake/src/main_window.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yakuake/src/main_window.cpp b/yakuake/src/main_window.cpp index 974a6e5..cdee080 100644 --- a/yakuake/src/main_window.cpp +++ b/yakuake/src/main_window.cpp @@ -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)));