summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:47:49 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:47:49 -0500
commited23a2a924aab44bb0a8eb786ba5c22ea6502ccf (patch)
tree88e7a5b5044ed83e34bc061d03bcd45f2365181f /src
parent33696d15ef821e45f24287ad62ad552bcf2046dc (diff)
downloadk3b-ed23a2a924aab44bb0a8eb786ba5c22ea6502ccf.tar.gz
k3b-ed23a2a924aab44bb0a8eb786ba5c22ea6502ccf.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'src')
-rw-r--r--src/k3bjobprogressdialog.cpp2
-rw-r--r--src/misc/k3bcdimagewritingdialog.cpp6
-rw-r--r--src/misc/k3bisoimagewritingdialog.cpp4
-rw-r--r--src/option/k3bcddboptiontab.cpp4
-rw-r--r--src/projects/k3bvcdtrackdialog.cpp2
-rw-r--r--src/rip/k3bvideocdview.cpp2
6 files changed, 10 insertions, 10 deletions
diff --git a/src/k3bjobprogressdialog.cpp b/src/k3bjobprogressdialog.cpp
index 77e0b76..fb5fb5c 100644
--- a/src/k3bjobprogressdialog.cpp
+++ b/src/k3bjobprogressdialog.cpp
@@ -332,7 +332,7 @@ void K3bJobProgressDialog::slotInfoMessage( const TQString& infoString, int type
// set the icon
switch( type ) {
case K3bJob::ERROR:
- currentInfoItem->setPixmap( 0, SmallIcon( "stop" ) );
+ currentInfoItem->setPixmap( 0, SmallIcon( "process-stop" ) );
break;
case K3bJob::WARNING:
currentInfoItem->setPixmap( 0, SmallIcon( "yellowinfo" ) );
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);
}
diff --git a/src/option/k3bcddboptiontab.cpp b/src/option/k3bcddboptiontab.cpp
index e527481..2411ba0 100644
--- a/src/option/k3bcddboptiontab.cpp
+++ b/src/option/k3bcddboptiontab.cpp
@@ -88,11 +88,11 @@ K3bCddbOptionTab::K3bCddbOptionTab( TQWidget* parent, const char* name )
// set icons for the buttons
m_buttonAddLocalDir->setPixmap( SmallIcon("ok") );
- m_buttonRemoveLocalDir->setPixmap( SmallIcon("stop") );
+ m_buttonRemoveLocalDir->setPixmap( SmallIcon("process-stop") );
m_buttonLocalDirUp->setPixmap( SmallIcon("up") );
m_buttonLocalDirDown->setPixmap( SmallIcon("down") );
m_buttonAddCddbServer->setPixmap( SmallIcon("ok") );
- m_buttonRemoveCddbServer->setPixmap( SmallIcon("stop") );
+ m_buttonRemoveCddbServer->setPixmap( SmallIcon("process-stop") );
m_buttonCddbServerUp->setPixmap( SmallIcon("up") );
m_buttonCddbServerDown->setPixmap( SmallIcon("down") );
diff --git a/src/projects/k3bvcdtrackdialog.cpp b/src/projects/k3bvcdtrackdialog.cpp
index 4b4c72a..db97767 100644
--- a/src/projects/k3bvcdtrackdialog.cpp
+++ b/src/projects/k3bvcdtrackdialog.cpp
@@ -296,7 +296,7 @@ void K3bVcdTrackDialog::fillPbcGui()
}
// add Event Disabled
- TQPixmap pmDisabled = SmallIcon( "stop" );
+ TQPixmap pmDisabled = SmallIcon( "process-stop" );
TQString txtDisabled = i18n( "Event Disabled" );
m_pbc_previous->insertItem( pmDisabled, txtDisabled );
m_pbc_next->insertItem( pmDisabled, txtDisabled );
diff --git a/src/rip/k3bvideocdview.cpp b/src/rip/k3bvideocdview.cpp
index 523b91f..52549e6 100644
--- a/src/rip/k3bvideocdview.cpp
+++ b/src/rip/k3bvideocdview.cpp
@@ -334,7 +334,7 @@ void K3bVideoCdView::initActions()
TQT_SLOT( slotDeselect() ), actionCollection(),
"deselect_track" );
- TDEAction* actionStartRip = new TDEAction( i18n( "Start Ripping" ), "run", 0, TQT_TQOBJECT(this),
+ TDEAction* actionStartRip = new TDEAction( i18n( "Start Ripping" ), "system-run", 0, TQT_TQOBJECT(this),
TQT_SLOT( startRip() ), actionCollection(), "start_rip" );
// TODO: set the actions tooltips and whatsthis infos