summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:48 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:48 -0500
commitf8ef2587acb6e248b08d59398e813b0e7db1b892 (patch)
treefd47949217efd1a77b871083377e9a219bd3dd5e
parentfbd6fbeaa52c7319bff6f46aa7859bfa1d178e5f (diff)
downloadkrename-f8ef2587acb6e248b08d59398e813b0e7db1b892.tar.gz
krename-f8ef2587acb6e248b08d59398e813b0e7db1b892.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--krename/kmylistview.cpp4
-rw-r--r--krename/profiledlg.cpp4
2 files changed, 4 insertions, 4 deletions
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 @@ void KMyListView::showContext( TQListViewItem* item, const TQPoint& pos, int )
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 @@ ProfileDlg::ProfileDlg(KRenameImpl* krename, TQWidget *parent, const char *name)
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 );