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/projects/k3bvcdlistviewitem.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/projects/k3bvcdlistviewitem.cpp')
-rw-r--r-- | src/projects/k3bvcdlistviewitem.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/projects/k3bvcdlistviewitem.cpp b/src/projects/k3bvcdlistviewitem.cpp index 128d6b0..8c30bc0 100644 --- a/src/projects/k3bvcdlistviewitem.cpp +++ b/src/projects/k3bvcdlistviewitem.cpp @@ -110,17 +110,17 @@ bool K3bVcdListViewItem::animate() switch ( m_track->mpegType() ) { case 0: // MPEG_MOTION - setPixmap( 2, ( SmallIcon( "video" ) ) ); + setPixmap( 2, ( SmallIcon( "video-x-generic" ) ) ); break; case 1: // MPEG_STILL - setPixmap( 2, ( SmallIcon( "image" ) ) ); + setPixmap( 2, ( SmallIcon( "image-x-generic" ) ) ); break; case 2: // MPEG_AUDIO - setPixmap( 2, ( SmallIcon( "sound" ) ) ); + setPixmap( 2, ( SmallIcon( "audio-x-generic" ) ) ); break; default: - setPixmap( 2, ( SmallIcon( "video" ) ) ); + setPixmap( 2, ( SmallIcon( "video-x-generic" ) ) ); break; } |