From f8ef2587acb6e248b08d59398e813b0e7db1b892 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 15:43:48 -0500 Subject: [PATCH] Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance --- krename/kmylistview.cpp | 4 ++-- krename/profiledlg.cpp | 4 ++-- 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 );