diff options
author | Timothy Pearson <[email protected]> | 2014-10-22 01:27:26 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-22 01:27:26 -0500 |
commit | e678b715818c4a2368f4faf54e1f5ba3e71099d3 (patch) | |
tree | ad0ab2c1036161d1dec6358fec230dbd66e5bb81 /src/soundkonverter.cpp | |
parent | 76de4bf8d13110d20c282d7ed7f43c19a7e7a271 (diff) | |
download | soundkonverter-e678b715818c4a2368f4faf54e1f5ba3e71099d3.tar.gz soundkonverter-e678b715818c4a2368f4faf54e1f5ba3e71099d3.zip |
Bring most mimetypes in line with XDG specifications. The following are not fully verified in source as of this commit due to ubiquity: html, empty, info, make, man, misc, source, unknown
Diffstat (limited to 'src/soundkonverter.cpp')
-rwxr-xr-x | src/soundkonverter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soundkonverter.cpp b/src/soundkonverter.cpp index 7e87a2d..c716280 100755 --- a/src/soundkonverter.cpp +++ b/src/soundkonverter.cpp @@ -151,8 +151,8 @@ soundKonverter::soundKonverter() priorityActionMenu->insert(veryLowPriorityAction);*/ //priorityChanged(); - new TDEAction( i18n("A&dd Files ..."), "sound", CTRL+Key_D, TQT_TQOBJECT(this), TQT_SLOT(showFileDialog()), actionCollection(), "add_files" ); - new TDEAction( i18n("Add &Folder ..."), "folder", CTRL+Key_F, TQT_TQOBJECT(this), TQT_SLOT(showDirDialog()), actionCollection(), "add_folder" ); + 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 ..."), "cdaudio_unmount", 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()); @@ -232,7 +232,7 @@ soundKonverter::soundKonverter() //font.setWeight( TQFont::DemiBold ); font.setPointSize( font.pointSize() + 1 ); cAdd->setFont( font ); - cAdd->insertItem( iconLoader->loadIcon("sound",TDEIcon::Toolbar), i18n("Add files ...") ); + 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("cdaudio_unmount",TDEIcon::Toolbar), i18n("Add CD tracks ...") ); cAdd->insertItem( iconLoader->loadIcon("browser",TDEIcon::Toolbar), i18n("Add URL ...") ); |