Branch: master

f8ef2587 2014-10-13 15:43:48 Timothy Pearson
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
M krename/kmylistview.cpp
M krename/profiledlg.cpp
diff --git a/krename/kmylistview.cpp b/krename/kmylistview.cpp
index 9b50e2b..299d05c 100644
--- a/krename/kmylistview.cpp
+++ b/krename/kmylistview.cpp
@@ -83,9 +83,9 @@
         menu->insertItem( BarIcon("exec"), i18n("Open"), this, TQT_SLOT( openCurrent() ) );
         menu->insertSeparator();
     }
-    menu->insertItem( BarIcon("fileopen"), i18n("&Add..."), this, TQT_SLOT( addFiles() ) );
+    menu->insertItem( BarIcon("document-open"), i18n("&Add..."), this, TQT_SLOT( addFiles() ) );
     if(item)
-        menu->insertItem( BarIcon("editdelete"), i18n("&Remove"), this, TQT_SLOT( removeCurrentItem() ) );
+        menu->insertItem( BarIcon("edit-delete"), i18n("&Remove"), this, TQT_SLOT( removeCurrentItem() ) );
             
     menu->popup( pos );
 }
diff --git a/krename/profiledlg.cpp b/krename/profiledlg.cpp
index 3498307..d0b5741 100644
--- a/krename/profiledlg.cpp
+++ b/krename/profiledlg.cpp
@@ -409,8 +409,8 @@
     deleteProfile = new KPushButton( i18n("&Delete Profile"), plainPage() );
     checkDefault = new TQCheckBox( i18n("&Use as default profile on startup"), plainPage() );
 
-    createProfile->setIconSet( SmallIconSet( "filesaveas") );
-    loadProfile->setIconSet( SmallIconSet( "fileopen" ) );
+    createProfile->setIconSet( SmallIconSet( "document-save-as") );
+    loadProfile->setIconSet( SmallIconSet( "document-open" ) );
     deleteProfile->setIconSet( SmallIconSet( "edittrash" ) );
     
     TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Expanding );