diff options
author | Timothy Pearson <[email protected]> | 2014-10-22 01:27:23 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-22 01:27:23 -0500 |
commit | 83c4cc5dbddab07fb1677dc7e45cf47e1b13fd13 (patch) | |
tree | c73ce1f65de1c0cf353e2849c89fd3ddf3292a5a /src/misc/k3bcdimagewritingdialog.cpp | |
parent | ea7a7df0745058ecc9fd201684964e16f4401da3 (diff) | |
download | k3b-83c4cc5dbddab07fb1677dc7e45cf47e1b13fd13.tar.gz k3b-83c4cc5dbddab07fb1677dc7e45cf47e1b13fd13.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/misc/k3bcdimagewritingdialog.cpp')
-rw-r--r-- | src/misc/k3bcdimagewritingdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/misc/k3bcdimagewritingdialog.cpp b/src/misc/k3bcdimagewritingdialog.cpp index 28da8d3..64e06f5 100644 --- a/src/misc/k3bcdimagewritingdialog.cpp +++ b/src/misc/k3bcdimagewritingdialog.cpp @@ -589,7 +589,7 @@ void K3bCdImageWritingDialog::createIso9660InfoItems( K3bIso9660* isoF ) i18n("Detected:"), i18n("Iso9660 image") ); isoRootItem->setForegroundColor( 0, palette().disabled().foreground() ); - isoRootItem->setPixmap( 0, SmallIcon( "cdimage") ); + isoRootItem->setPixmap( 0, SmallIcon( "application-x-cd-image") ); TDEIO::filesize_t size = K3b::filesize( KURL::fromPathOrURL(isoF->fileName()) ); K3bListViewItem* item = new K3bListViewItem( isoRootItem, m_infoView->lastItem(), @@ -654,7 +654,7 @@ void K3bCdImageWritingDialog::createCdrecordCloneItems( const TQString& tocFile, i18n("Detected:"), i18n("Cdrecord clone image") ); isoRootItem->setForegroundColor( 0, palette().disabled().foreground() ); - isoRootItem->setPixmap( 0, SmallIcon( "cdimage") ); + isoRootItem->setPixmap( 0, SmallIcon( "application-x-cd-image") ); K3bListViewItem* item = new K3bListViewItem( isoRootItem, m_infoView->lastItem(), i18n("Filesize:"), TDEIO::convertSize( K3b::filesize(KURL::fromPathOrURL(imageFile)) ) ); @@ -682,7 +682,7 @@ void K3bCdImageWritingDialog::createCueBinItems( const TQString& cueFile, const i18n("Detected:"), i18n("Cue/bin image") ); isoRootItem->setForegroundColor( 0, palette().disabled().foreground() ); - isoRootItem->setPixmap( 0, SmallIcon( "cdimage") ); + isoRootItem->setPixmap( 0, SmallIcon( "application-x-cd-image") ); K3bListViewItem* item = new K3bListViewItem( isoRootItem, m_infoView->lastItem(), i18n("Filesize:"), TDEIO::convertSize( K3b::filesize(KURL::fromPathOrURL(imageFile)) ) ); @@ -710,7 +710,7 @@ void K3bCdImageWritingDialog::createAudioCueItems( const K3bCueFileParser& cp ) i18n("Detected:"), i18n("Audio Cue Image") ); rootItem->setForegroundColor( 0, palette().disabled().foreground() ); - rootItem->setPixmap( 0, SmallIcon( "sound") ); + rootItem->setPixmap( 0, SmallIcon( "audio-x-generic") ); K3bListViewItem* trackParent = new K3bListViewItem( rootItem, i18n("%n track", "%n tracks", cp.toc().count() ), |