summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:52 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:52 -0500
commit8455a5fe78267e9d851ff658e2db295b8ec64648 (patch)
tree04058261f189a3122f2deee3cd913a09676fe5d4
parentbb11759017232640594824310bd61a02ed749ab0 (diff)
downloadyakuake-8455a5fe78267e9d851ff658e2db295b8ec64648.tar.gz
yakuake-8455a5fe78267e9d851ff658e2db295b8ec64648.zip
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
-rw-r--r--yakuake/src/main_window.cpp6
1 files 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)));