summaryrefslogtreecommitdiffstats
path: root/kooka
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
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')
-rw-r--r--kooka/imageselectline.cpp2
-rw-r--r--kooka/kooka.cpp10
-rw-r--r--kooka/kookapref.cpp2
-rw-r--r--kooka/scanpackager.cpp2
4 files changed, 8 insertions, 8 deletions
diff --git a/kooka/imageselectline.cpp b/kooka/imageselectline.cpp
index 71135dc2..4b83c5bc 100644
--- a/kooka/imageselectline.cpp
+++ b/kooka/imageselectline.cpp
@@ -54,7 +54,7 @@ ImageSelectLine::ImageSelectLine( TQWidget *parent, const TQString& text )
(void) new TQLabel( text, this );
m_urlCombo = new KURLComboBox( KURLComboBox::Files, this );
m_buttFileSelect = new TQPushButton( this );
- m_buttFileSelect->setPixmap( SmallIcon( "fileopen" ) );
+ m_buttFileSelect->setPixmap( SmallIcon( "document-open" ) );
m_urlCombo->setMaxItems(5);
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");
}
diff --git a/kooka/kookapref.cpp b/kooka/kookapref.cpp
index d170840d..729f2429 100644
--- a/kooka/kookapref.cpp
+++ b/kooka/kookapref.cpp
@@ -351,7 +351,7 @@ void KookaPreferences::setupSaveFormatPage( )
{
konf->setGroup( OP_FILE_GROUP );
TQFrame *page = addPage( i18n("Image Saving"), i18n("Configure Image Save Assistant" ),
- BarIcon("filesave", TDEIcon::SizeMedium ) );
+ BarIcon("document-save", TDEIcon::SizeMedium ) );
TQVBoxLayout *top = new TQVBoxLayout( page, 0, spacingHint() );
/* Skip the format asking if a format entry exists */
diff --git a/kooka/scanpackager.cpp b/kooka/scanpackager.cpp
index 9f4ccd89..daa2cd3b 100644
--- a/kooka/scanpackager.cpp
+++ b/kooka/scanpackager.cpp
@@ -599,7 +599,7 @@ void ScanPackager::loadImageForItem( KFileTreeViewItem *item )
}
prevItem = subImgItem;
- subImgItem->setPixmap( 0, loader->loadIcon( "editcopy", TDEIcon::Small ));
+ subImgItem->setPixmap( 0, loader->loadIcon( "edit-copy", TDEIcon::Small ));
subImgItem->setText( 0, i18n("Sub-image %1").arg( i ) );
KookaImage *subImgImg = new KookaImage( i, img );
subImgImg->setFileItem( newKfi );