summaryrefslogtreecommitdiffstats
path: root/kooka/kooka.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:57 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:57 -0500
commit50e3d450c5b66e77578534f80c4e604b36c56c4d (patch)
tree937354fcd9c3c346d4c63c7edad16cf43090ccf9 /kooka/kooka.cpp
parentffd6b5f8426c6f4d5ded673221f6799598d36a34 (diff)
downloadtdegraphics-50e3d450c5b66e77578534f80c4e604b36c56c4d.tar.gz
tdegraphics-50e3d450c5b66e77578534f80c4e604b36c56c4d.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 'kooka/kooka.cpp')
-rw-r--r--kooka/kooka.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kooka/kooka.cpp b/kooka/kooka.cpp
index 06e68f57..58c368ae 100644
--- a/kooka/kooka.cpp
+++ b/kooka/kooka.cpp
@@ -200,7 +200,7 @@ actionCollection());
TQT_TQOBJECT(this), TQT_SLOT( slMirrorBoth() ),
actionCollection(), "mirrorBoth" );
- (void) new TDEAction(i18n("Open Image in &Graphic Application..."), "fileopen", CTRL+Key_G,
+ (void) new TDEAction(i18n("Open Image in &Graphic Application..."), "document-open", CTRL+Key_G,
TQT_TQOBJECT(m_view), TQT_SLOT( slOpenCurrInGraphApp() ),
actionCollection(), "openInGraphApp" );
@@ -220,12 +220,12 @@ actionCollection());
m_view->connectViewerAction( act );
/* Gallery actions */
- act = new TDEAction(i18n("&Create Folder..."), "folder_new", 0,
+ act = new TDEAction(i18n("&Create Folder..."), "folder-new", 0,
TQT_TQOBJECT(m_view->gallery()),TQT_SLOT( slotCreateFolder() ),
actionCollection(), "foldernew" );
m_view->connectGalleryAction( act );
- act = new TDEAction(i18n("&Save Image..."), "filesave", 0,
+ act = new TDEAction(i18n("&Save Image..."), "document-save", 0,
TQT_TQOBJECT(m_view->gallery()),TQT_SLOT( slotExportFile() ),
actionCollection(), "saveImage" );
m_view->connectGalleryAction( act );
@@ -240,7 +240,7 @@ actionCollection());
actionCollection(), "deleteImage" );
m_view->connectGalleryAction( act );
- act = new TDEAction(i18n("&Unload Image"), "fileclose", 0,
+ act = new TDEAction(i18n("&Unload Image"), "window-close", 0,
TQT_TQOBJECT(m_view->gallery()),TQT_SLOT( slotUnloadItems() ),
actionCollection(), "unloadImage" );
m_view->connectGalleryAction( act );
@@ -265,7 +265,7 @@ actionCollection());
actionCollection(), "enable_msgs");
- m_saveOCRTextAction = new TDEAction( i18n("Save OCR Res&ult Text"), "filesaveas", CTRL+Key_U,
+ m_saveOCRTextAction = new TDEAction( i18n("Save OCR Res&ult Text"), "document-save-as", CTRL+Key_U,
m_view, TQT_SLOT(slSaveOCRResult()),
actionCollection(), "saveOCRResult");
}