diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:06 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:06 -0500 |
commit | cf5beda164b7393ee03d6d26c5b96df32bcf85e9 (patch) | |
tree | 5524d78e683fc69ef3360ae7d9770df6a642b028 | |
parent | ead9eec7945acb3f34d2b3ce944b9f9b0c43c66c (diff) | |
download | k3b-cf5beda164b7393ee03d6d26c5b96df32bcf85e9.tar.gz k3b-cf5beda164b7393ee03d6d26c5b96df32bcf85e9.zip |
Fix exec icon location and bring it into XDG compliance
-rw-r--r-- | src/misc/k3bcdimagewritingdialog.cpp | 2 | ||||
-rw-r--r-- | src/misc/k3bisoimagewritingdialog.cpp | 2 | ||||
-rw-r--r-- | src/option/k3boptiondialog.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/misc/k3bcdimagewritingdialog.cpp b/src/misc/k3bcdimagewritingdialog.cpp index 64e06f5..d7bb604 100644 --- a/src/misc/k3bcdimagewritingdialog.cpp +++ b/src/misc/k3bcdimagewritingdialog.cpp @@ -841,7 +841,7 @@ void K3bCdImageWritingDialog::calculateMd5Sum( const TQString& file ) d->md5SumItem->setText( 0, i18n("Md5 Sum:") ); d->md5SumItem->setForegroundColor( 0, palette().disabled().foreground() ); d->md5SumItem->setProgress( 1, 0 ); - d->md5SumItem->setPixmap( 0, SmallIcon( "exec") ); + d->md5SumItem->setPixmap( 0, SmallIcon( "application-x-executable") ); if( file != d->lastCheckedFile ) { d->lastCheckedFile = file; diff --git a/src/misc/k3bisoimagewritingdialog.cpp b/src/misc/k3bisoimagewritingdialog.cpp index af072a8..d293f6e 100644 --- a/src/misc/k3bisoimagewritingdialog.cpp +++ b/src/misc/k3bisoimagewritingdialog.cpp @@ -443,7 +443,7 @@ void K3bIsoImageWritingDialog::calculateMd5Sum( const TQString& file ) d->md5SumItem->setText( 0, i18n("Md5 Sum:") ); d->md5SumItem->setForegroundColor( 0, palette().disabled().foreground() ); d->md5SumItem->setProgress( 1, 0 ); - d->md5SumItem->setPixmap( 0, SmallIcon( "exec") ); + d->md5SumItem->setPixmap( 0, SmallIcon( "application-x-executable") ); if( file != d->lastCheckedFile ) { d->lastCheckedFile = file; diff --git a/src/option/k3boptiondialog.cpp b/src/option/k3boptiondialog.cpp index 530ef7d..3e9b850 100644 --- a/src/option/k3boptiondialog.cpp +++ b/src/option/k3boptiondialog.cpp @@ -141,7 +141,7 @@ void K3bOptionDialog::setupBurningPage() void K3bOptionDialog::setupProgramsPage() { TQFrame* frame = addPage( i18n("Programs"), i18n("Setup External Programs"), - TDEGlobal::instance()->iconLoader()->loadIcon( "exec", TDEIcon::NoGroup, TDEIcon::SizeMedium ) ); + TDEGlobal::instance()->iconLoader()->loadIcon( "application-x-executable", TDEIcon::NoGroup, TDEIcon::SizeMedium ) ); TQGridLayout* _frameLayout = new TQGridLayout( frame ); _frameLayout->setSpacing( 0 ); |