diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-03-02 09:08:49 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-03-02 09:08:49 -0600 |
commit | 7cf23e1d750fa225835e83ad2d45ecb00eff9f37 (patch) | |
tree | 0dd5850fbb187236b114b45bbf3927a5209995e8 /src/k3bappdevicemanager.cpp | |
parent | 17800ee30d51f3eb191b90dad50ad972bd5e41d0 (diff) | |
download | k3b-7cf23e1d750fa225835e83ad2d45ecb00eff9f37.tar.gz k3b-7cf23e1d750fa225835e83ad2d45ecb00eff9f37.zip |
Rename most device icons to comply with XDG standards
Diffstat (limited to 'src/k3bappdevicemanager.cpp')
-rw-r--r-- | src/k3bappdevicemanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k3bappdevicemanager.cpp b/src/k3bappdevicemanager.cpp index 6043be1..4b06f8c 100644 --- a/src/k3bappdevicemanager.cpp +++ b/src/k3bappdevicemanager.cpp @@ -44,9 +44,9 @@ K3bAppDeviceManager::K3bAppDeviceManager( TQObject* parent, const char* name ) TDEActionMenu* devicePopupMenu = new TDEActionMenu( m_actionCollection, "device_popup" ); m_actionDiskInfo = new TDEAction( i18n("Media &Info"), "application-vnd.tde.info", 0, this, TQT_SLOT(diskInfo()), m_actionCollection, "device_diskinfo"); - m_actionUnmount = new TDEAction( i18n("&Unmount"), "cdrom_unmount", 0, this, TQT_SLOT(unmountDisk()), + m_actionUnmount = new TDEAction( i18n("&Unmount"), "media-optical-cdrom", 0, this, TQT_SLOT(unmountDisk()), m_actionCollection, "device_unmount"); - m_actionMount = new TDEAction( i18n("&Mount"), "cdrom_mount", 0, this, TQT_SLOT(mountDisk()), + m_actionMount = new TDEAction( i18n("&Mount"), "media-optical-cdrom-mounted", 0, this, TQT_SLOT(mountDisk()), m_actionCollection, "device_mount"); m_actionEject = new TDEAction( i18n("&Eject"), "", 0, this, TQT_SLOT(ejectDisk()), m_actionCollection, "device_eject"); |