diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:49 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:49 -0500 |
commit | 54ca768e5053367fe60b5dce030b50dc6e3f2b1c (patch) | |
tree | 017a4f600a88b6e1440754b00931f5dc1f668dbd | |
parent | 36b7e34a6842a3156eb22978895e971f87772cd5 (diff) | |
download | kscope-54ca768e5053367fe60b5dce030b50dc6e3f2b1c.tar.gz kscope-54ca768e5053367fe60b5dce030b50dc6e3f2b1c.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-- | src/kscopeactions.cpp | 8 | ||||
-rw-r--r-- | src/kscopepixmaps.cpp | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/kscopeactions.cpp b/src/kscopeactions.cpp index 0acee42..d6233d1 100644 --- a/src/kscopeactions.cpp +++ b/src/kscopeactions.cpp @@ -154,7 +154,7 @@ void KScopeActions::init() SIGNAL(toggleProject(bool))); addAction(i18n("&Close Project"), - "fileclose", + "window-close", NULL, m_pWindow, SLOT(slotCloseProject()), @@ -326,7 +326,7 @@ void KScopeActions::init() // Window menu addAction(i18n("Close &All"), - "fileclose", + "window-close", NULL, m_pWindow, SLOT(slotCloseAllWindows()), @@ -364,7 +364,7 @@ void KScopeActions::init() // Query widget popup menu addAction(i18n("&New"), - "filenew", + "document-new", NULL, m_pWindow->m_pQueryWidget, SLOT(slotNewQueryPage()), @@ -388,7 +388,7 @@ void KScopeActions::init() SIGNAL(toggleProject(bool))); addAction(i18n("&Close"), - "fileclose", + "window-close", NULL, m_pWindow->m_pQueryWidget, SLOT(slotCloseCurrent()), diff --git a/src/kscopepixmaps.cpp b/src/kscopepixmaps.cpp index 31dca4b..cc26c3f 100644 --- a/src/kscopepixmaps.cpp +++ b/src/kscopepixmaps.cpp @@ -331,7 +331,7 @@ TQPixmap KScopePixmaps::getPixmap(LoadPixName name) false); case ButtonSaveAs: - return m_loader.loadIcon("filesaveas", TDEIcon::Toolbar, + return m_loader.loadIcon("document-save-as", TDEIcon::Toolbar, 0, false); case ButtonZoomIn: |