From a7faafba92a63eab8f4347010dca33c7d0dffc44 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 22 Oct 2014 14:24:10 -0500 Subject: [PATCH] Fix exec icon location and bring it into XDG compliance --- krename/kmylistview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/krename/kmylistview.cpp b/krename/kmylistview.cpp index 299d05c..ce683d2 100644 --- a/krename/kmylistview.cpp +++ b/krename/kmylistview.cpp @@ -80,7 +80,7 @@ void KMyListView::showContext( TQListViewItem* item, const TQPoint& pos, int ) menu->insertTitle( list->text( itemIndex( item ) ), 0, 0 ); menu->insertItem( i18n("&Change Filename Manually"), this, TQT_SLOT( changeCurrentItem() ), Key_F2 ); menu->insertSeparator(); - menu->insertItem( BarIcon("exec"), i18n("Open"), this, TQT_SLOT( openCurrent() ) ); + menu->insertItem( BarIcon("application-x-executable"), i18n("Open"), this, TQT_SLOT( openCurrent() ) ); menu->insertSeparator(); } menu->insertItem( BarIcon("document-open"), i18n("&Add..."), this, TQT_SLOT( addFiles() ) );