diff options
author | Timothy Pearson <[email protected]> | 2014-10-12 17:47:49 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-12 17:47:49 -0500 |
commit | ed23a2a924aab44bb0a8eb786ba5c22ea6502ccf (patch) | |
tree | 88e7a5b5044ed83e34bc061d03bcd45f2365181f /src/misc | |
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')
-rw-r--r-- | src/misc/k3bcdimagewritingdialog.cpp | 6 | ||||
-rw-r--r-- | src/misc/k3bisoimagewritingdialog.cpp | 4 |
2 files changed, 5 insertions, 5 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); } diff --git a/src/misc/k3bisoimagewritingdialog.cpp b/src/misc/k3bisoimagewritingdialog.cpp index 915e300..03db6cf 100644 --- a/src/misc/k3bisoimagewritingdialog.cpp +++ b/src/misc/k3bisoimagewritingdialog.cpp @@ -381,7 +381,7 @@ void K3bIsoImageWritingDialog::updateImageSize( const TQString& path ) K3bListViewItem* item = new K3bListViewItem( m_infoView, m_infoView->lastItem(), i18n("Not an Iso9660 image") ); item->setForegroundColor( 0, TQt::red ); - item->setPixmap( 0, SmallIcon( "stop") ); + item->setPixmap( 0, SmallIcon( "process-stop") ); } calculateMd5Sum( path ); @@ -473,7 +473,7 @@ void K3bIsoImageWritingDialog::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); } |