diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:47:49 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:47:49 -0500 |
commit | ed23a2a924aab44bb0a8eb786ba5c22ea6502ccf (patch) | |
tree | 88e7a5b5044ed83e34bc061d03bcd45f2365181f /src/misc/k3bcdimagewritingdialog.cpp | |
parent | 33696d15ef821e45f24287ad62ad552bcf2046dc (diff) | |
download | k3b-ed23a2a924aab44bb0a8eb786ba5c22ea6502ccf.tar.gz k3b-ed23a2a924aab44bb0a8eb786ba5c22ea6502ccf.zip |
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'src/misc/k3bcdimagewritingdialog.cpp')
-rw-r--r-- | src/misc/k3bcdimagewritingdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/misc/k3bcdimagewritingdialog.cpp b/src/misc/k3bcdimagewritingdialog.cpp index 6ea61c2..28da8d3 100644 --- a/src/misc/k3bcdimagewritingdialog.cpp +++ b/src/misc/k3bcdimagewritingdialog.cpp @@ -569,14 +569,14 @@ void K3bCdImageWritingDialog::slotUpdateImage( const TQString& ) K3bListViewItem* item = new K3bListViewItem( m_infoView, m_infoView->lastItem(), i18n("Seems not to be a usable image") ); item->setForegroundColor( 0, TQt::red ); - item->setPixmap( 0, SmallIcon( "stop") ); + item->setPixmap( 0, SmallIcon( "process-stop") ); } } else { K3bListViewItem* item = new K3bListViewItem( m_infoView, m_infoView->lastItem(), i18n("File not found") ); item->setForegroundColor( 0, TQt::red ); - item->setPixmap( 0, SmallIcon( "stop") ); + item->setPixmap( 0, SmallIcon( "process-stop") ); } slotToggleAll(); @@ -871,7 +871,7 @@ void K3bCdImageWritingDialog::slotMd5JobFinished( bool success ) d->md5SumItem->setText( 1, i18n("Calculation cancelled") ); else d->md5SumItem->setText( 1, i18n("Calculation failed") ); - d->md5SumItem->setPixmap( 0, SmallIcon( "stop") ); + d->md5SumItem->setPixmap( 0, SmallIcon( "process-stop") ); d->lastCheckedFile.truncate(0); } |