Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent fbd6fbeaa5
commit f8ef2587ac

@ -83,9 +83,9 @@ void KMyListView::showContext( TQListViewItem* item, const TQPoint& pos, int )
menu->insertItem( BarIcon("exec"), i18n("Open"), this, TQT_SLOT( openCurrent() ) ); menu->insertItem( BarIcon("exec"), i18n("Open"), this, TQT_SLOT( openCurrent() ) );
menu->insertSeparator(); 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) 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 ); menu->popup( pos );
} }

@ -409,8 +409,8 @@ ProfileDlg::ProfileDlg(KRenameImpl* krename, TQWidget *parent, const char *name)
deleteProfile = new KPushButton( i18n("&Delete Profile"), plainPage() ); deleteProfile = new KPushButton( i18n("&Delete Profile"), plainPage() );
checkDefault = new TQCheckBox( i18n("&Use as default profile on startup"), plainPage() ); checkDefault = new TQCheckBox( i18n("&Use as default profile on startup"), plainPage() );
createProfile->setIconSet( SmallIconSet( "filesaveas") ); createProfile->setIconSet( SmallIconSet( "document-save-as") );
loadProfile->setIconSet( SmallIconSet( "fileopen" ) ); loadProfile->setIconSet( SmallIconSet( "document-open" ) );
deleteProfile->setIconSet( SmallIconSet( "edittrash" ) ); deleteProfile->setIconSet( SmallIconSet( "edittrash" ) );
TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Expanding ); TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Expanding );

Loading…
Cancel
Save