summaryrefslogtreecommitdiffstats
path: root/src/option/k3bdevicewidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-06-27 00:24:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-06-27 00:24:17 +0900
commita91bd11658bb1179b7a625af686622cca9f1fa4a (patch)
tree4913192cf41934dfca8ceb7a886c3205b0bb61aa /src/option/k3bdevicewidget.cpp
parent82c3b55a9a0adaf07917edb3407f7ec8c109aacc (diff)
downloadk3b-a91bd11658bb1179b7a625af686622cca9f1fa4a.tar.gz
k3b-a91bd11658bb1179b7a625af686622cca9f1fa4a.zip
Adjusted to new normalized device icon names in tdelibs.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/option/k3bdevicewidget.cpp')
-rw-r--r--src/option/k3bdevicewidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/option/k3bdevicewidget.cpp b/src/option/k3bdevicewidget.cpp
index dcc2486..3a93196 100644
--- a/src/option/k3bdevicewidget.cpp
+++ b/src/option/k3bdevicewidget.cpp
@@ -232,11 +232,11 @@ void K3bDeviceWidget::updateDeviceListViews()
// create the parent view items
// -----------------------------------------
m_writerParentViewItem = new TQListViewItem( m_viewDevices, i18n("Writer Drives") );
- m_writerParentViewItem->setPixmap( 0, SmallIcon( "media-optical-cdwriter" ) );
+ m_writerParentViewItem->setPixmap( 0, SmallIcon( "cd-rw-unmounted" ) );
// spacer item
(void)new TQListViewItem( m_viewDevices );
m_readerParentViewItem = new TQListViewItem( m_viewDevices, i18n("Readonly Drives") );
- m_readerParentViewItem->setPixmap( 0, SmallIcon( "media-optical-cdrom" ) );
+ m_readerParentViewItem->setPixmap( 0, SmallIcon( "media-optical-cdrom-unmounted" ) );
// -----------------------------------------
TQFont fBold( m_viewDevices->font() );