summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:48:08 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:48:08 -0500
commitfbd6fbeaa52c7319bff6f46aa7859bfa1d178e5f (patch)
treef4a18847695f1ec69686d31ea5b1af57e0d208ea
parentfabf4f393045f13981c2af3c6f26ed7ee7f524eb (diff)
downloadkrename-fbd6fbeaa52c7319bff6f46aa7859bfa1d178e5f.tar.gz
krename-fbd6fbeaa52c7319bff6f46aa7859bfa1d178e5f.zip
Bring undo, redo, find, and revert icons into XDG compliance
-rw-r--r--krename/krenameimpl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/krename/krenameimpl.cpp b/krename/krenameimpl.cpp
index 0c99b3f..bf41490 100644
--- a/krename/krenameimpl.cpp
+++ b/krename/krenameimpl.cpp
@@ -302,7 +302,7 @@ void KRenameImpl::setupActions()
menuBar->insertItem( i18n("E&xtras"), mnuExtra );
mnuExtra->insertItem( i18n("&Profiles..."), this, TQT_SLOT( manageProfiles() ) );
mnuExtra->insertSeparator();
- mnuExtra->insertItem( SmallIcon("undo"), i18n("&Undo Old Renaming Action..."), this, TQT_SLOT( undo() ) );
+ mnuExtra->insertItem( SmallIcon("edit-undo"), i18n("&Undo Old Renaming Action..."), this, TQT_SLOT( undo() ) );
menuBar->insertItem( i18n("&Settings"), mnuSettings );
menuBar->insertSeparator();
menuBar->insertItem( i18n("&Help"), mnuHelp->menu() );
@@ -567,7 +567,7 @@ void KRenameImpl::setupFileTab1()
comboExtension = new KComboBox( false, tab );
buttonReplace = new KPushButton( i18n("Find &and Replace..."), tab );
- buttonReplace->setIconSet( SmallIconSet("find") );
+ buttonReplace->setIconSet( SmallIconSet("edit-find") );
buttonNumber = new KPushButton( i18n("&Numbering..."), tab );
buttonCoord = new KPushButton( i18n("&Insert Part of Filename..."), tab );
@@ -706,7 +706,7 @@ void KRenameImpl::setupFileTab2()
spinNull->setRange( 1, 100, 1, false );
buttonEasyReplace = new KPushButton( i18n("&Find and Replace..."), rightBox );
- buttonEasyReplace->setIconSet( SmallIconSet("find") );
+ buttonEasyReplace->setIconSet( SmallIconSet("edit-find") );
layout->addWidget( vgroup1 );
layout->addWidget( rightBox );