From 50b6f1f60f14994ff4c520abd1b748c780f8572d Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 22 Oct 2014 14:24:26 -0500 Subject: Fix exec icon location and bring it into XDG compliance --- klipper/configdialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'klipper') 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("") ); - 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() -- cgit v1.2.3