diff options
author | Michele Calgaro <[email protected]> | 2019-06-26 16:28:37 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2019-06-26 16:28:37 +0900 |
commit | 93a1d2825457bfd0e4990e3d9316cef42a1cc4cc (patch) | |
tree | 460c3aa1a54badde7e8949a8ba79d212edbe3410 /src/soundkonverter.cpp | |
parent | fe9f1217be922a521d314a54cb775eea35081ee6 (diff) | |
download | soundkonverter-93a1d2825457bfd0e4990e3d9316cef42a1cc4cc.tar.gz soundkonverter-93a1d2825457bfd0e4990e3d9316cef42a1cc4cc.zip |
Adjusted to new normalized device icon names in tdelibs.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/soundkonverter.cpp')
-rw-r--r-- | src/soundkonverter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soundkonverter.cpp b/src/soundkonverter.cpp index 5e905dd..d6267a0 100644 --- a/src/soundkonverter.cpp +++ b/src/soundkonverter.cpp @@ -153,7 +153,7 @@ soundKonverter::soundKonverter() new TDEAction( i18n("A&dd Files ..."), "audio-x-generic", CTRL+Key_D, TQT_TQOBJECT(this), TQT_SLOT(showFileDialog()), actionCollection(), "add_files" ); new TDEAction( i18n("Add &Folder ..."), "audio-x-generic", CTRL+Key_F, TQT_TQOBJECT(this), TQT_SLOT(showDirDialog()), actionCollection(), "add_folder" ); - new TDEAction( i18n("Add CD &tracks ..."), "media-optical-cdaudio", CTRL+Key_T, TQT_TQOBJECT(this), TQT_SLOT(showCdDialog()), actionCollection(), "add_audiocd" ); + new TDEAction( i18n("Add CD &tracks ..."), "media-optical-cdaudio-unmounted", CTRL+Key_T, TQT_TQOBJECT(this), TQT_SLOT(showCdDialog()), actionCollection(), "add_audiocd" ); new TDEAction( i18n("Add &URL ..."), "browser", CTRL+Key_U, TQT_TQOBJECT(this), TQT_SLOT(showUrlDialog()), actionCollection(), "add_url" ); KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(close()), actionCollection()); @@ -234,7 +234,7 @@ soundKonverter::soundKonverter() cAdd->setFont( font ); cAdd->insertItem( iconLoader->loadIcon("audio-x-generic",TDEIcon::Toolbar), i18n("Add files ...") ); cAdd->insertItem( iconLoader->loadIcon("folder",TDEIcon::Toolbar), i18n("Add folder ...") ); - cAdd->insertItem( iconLoader->loadIcon("media-optical-cdaudio",TDEIcon::Toolbar), i18n("Add CD tracks ...") ); + cAdd->insertItem( iconLoader->loadIcon("media-optical-cdaudio-unmounted",TDEIcon::Toolbar), i18n("Add CD tracks ...") ); cAdd->insertItem( iconLoader->loadIcon("browser",TDEIcon::Toolbar), i18n("Add URL ...") ); addBox->addWidget( cAdd ); connect( cAdd, TQT_SIGNAL(clicked(int)), |