summaryrefslogtreecommitdiffstats
path: root/klipper
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 14:24:26 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 14:24:26 -0500
commit50b6f1f60f14994ff4c520abd1b748c780f8572d (patch)
tree5cb75cb292665f18f1489371153478555fc84319 /klipper
parentf5e68e956f5c27e28ffdd42c4bc45afd509e60aa (diff)
downloadtdebase-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.cpp6
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()