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 );