diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:26 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:26 -0500 |
commit | 50b6f1f60f14994ff4c520abd1b748c780f8572d (patch) | |
tree | 5cb75cb292665f18f1489371153478555fc84319 /klipper | |
parent | f5e68e956f5c27e28ffdd42c4bc45afd509e60aa (diff) | |
download | tdebase-50b6f1f60f14994ff4c520abd1b748c780f8572d.tar.gz tdebase-50b6f1f60f14994ff4c520abd1b748c780f8572d.zip |
Fix exec icon location and bring it into XDG compliance
Diffstat (limited to 'klipper')
-rw-r--r-- | klipper/configdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/klipper/configdialog.cpp b/klipper/configdialog.cpp index 8f22070cf..66fce6fe3 100644 --- a/klipper/configdialog.cpp +++ b/klipper/configdialog.cpp @@ -260,7 +260,7 @@ ActionWidget::ActionWidget( const ActionList *list, ConfigDialog* configWidget, ActionListIterator it( *list ); const TQPixmap& doc = SmallIcon( "misc" ); - const TQPixmap& exec = SmallIcon( "exec" ); + const TQPixmap& exec = SmallIcon( "application-x-executable" ); for ( action = it.current(); action; action = ++it ) { item = new TQListViewItem( listView, after, @@ -341,7 +341,7 @@ void ActionWidget::slotContextMenu( TDEListView *, TQListViewItem *item, TQListViewItem *cmdItem = new TQListViewItem( p, item, i18n("Click here to set the command to be executed"), i18n("<new command>") ); - cmdItem->setPixmap( 0, SmallIcon( "exec" ) ); + cmdItem->setPixmap( 0, SmallIcon( "application-x-executable" ) ); } else if ( id == rmCmd ) delete item; @@ -355,7 +355,7 @@ void ActionWidget::slotItemChanged( TQListViewItem *item, const TQPoint&, int co return; ClipCommand command( item->text(0), item->text(1) ); item->setPixmap( 0, SmallIcon( command.pixmap.isEmpty() ? - "exec" : command.pixmap ) ); + "application-x-executable" : command.pixmap ) ); } void ActionWidget::slotAddAction() |