summaryrefslogtreecommitdiffstats
path: root/konsole/konsole/konsole_part.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:56 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:56 -0500
commitab197a37e3e362ae3980f5bdd9840b0e4703e370 (patch)
tree8778c43175b2f6e2b593ef0edf3f9e5c8518e678 /konsole/konsole/konsole_part.cpp
parenta19ce6ad349c047b7feb2ad49c5a066d7dd2c745 (diff)
downloadtdebase-ab197a37e3e362ae3980f5bdd9840b0e4703e370.tar.gz
tdebase-ab197a37e3e362ae3980f5bdd9840b0e4703e370.zip
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'konsole/konsole/konsole_part.cpp')
-rw-r--r--konsole/konsole/konsole_part.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/konsole/konsole/konsole_part.cpp b/konsole/konsole/konsole_part.cpp
index 87cd2b373..6cc900efc 100644
--- a/konsole/konsole/konsole_part.cpp
+++ b/konsole/konsole/konsole_part.cpp
@@ -450,7 +450,7 @@ void konsolePart::makeGUI()
// Save Settings
m_options->insertSeparator();
- TDEAction *saveSettings = new TDEAction(i18n("&Save as Default"), "filesave", 0, this,
+ TDEAction *saveSettings = new TDEAction(i18n("&Save as Default"), "document-save", 0, this,
TQT_SLOT(saveProperties()), actions, "save_default");
saveSettings->plug(m_options);
if (TDEGlobalSettings::insertTearOffHandle())
@@ -463,11 +463,11 @@ void konsolePart::makeGUI()
TQT_SLOT(setSelectionEnd()), actions, "selection_end");
selectionEnd->plug(m_popupMenu);
- TDEAction *copyClipboard = new TDEAction(i18n("&Copy"), "editcopy", 0,
+ TDEAction *copyClipboard = new TDEAction(i18n("&Copy"), "edit-copy", 0,
TQT_TQOBJECT(te), TQT_SLOT(copyClipboard()), actions, "edit_copy");
copyClipboard->plug(m_popupMenu);
- TDEAction *pasteClipboard = new TDEAction(i18n("&Paste"), "editpaste", 0,
+ TDEAction *pasteClipboard = new TDEAction(i18n("&Paste"), "edit-paste", 0,
TQT_TQOBJECT(te), TQT_SLOT(pasteClipboard()), actions, "edit_paste");
pasteClipboard->plug(m_popupMenu);
@@ -483,7 +483,7 @@ void konsolePart::makeGUI()
m_popupMenu->insertSeparator();
}
- TDEAction *closeSession = new TDEAction(i18n("&Close Terminal Emulator"), "fileclose", 0, this,
+ TDEAction *closeSession = new TDEAction(i18n("&Close Terminal Emulator"), "window-close", 0, this,
TQT_SLOT(closeCurrentSession()), actions, "close_session");
closeSession->plug(m_popupMenu);
if (TDEGlobalSettings::insertTearOffHandle())