summaryrefslogtreecommitdiffstats
path: root/kmail/kmmimeparttree.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:30 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:30 -0500
commit8bd51635d7c39bee8703a5f83bceee117f0f00c8 (patch)
treebec74335497a5cdf83b63b7e649c04ac3474e340 /kmail/kmmimeparttree.cpp
parentc1af5c98d368b094d8f79c20ce64817f6518706b (diff)
downloadtdepim-8bd51635d7c39bee8703a5f83bceee117f0f00c8.tar.gz
tdepim-8bd51635d7c39bee8703a5f83bceee117f0f00c8.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 'kmail/kmmimeparttree.cpp')
-rw-r--r--kmail/kmmimeparttree.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/kmmimeparttree.cpp b/kmail/kmmimeparttree.cpp
index 200e7736..4448cec4 100644
--- a/kmail/kmmimeparttree.cpp
+++ b/kmail/kmmimeparttree.cpp
@@ -366,11 +366,11 @@ void KMMimePartTreeItem::setIconAndTextForType( const TQString & mime )
setPixmap( 0, SmallIcon("folder") );
} else if ( mimetype == "application/octet-stream" ) {
setText( 1, i18n("Unspecified Binary Data") ); // don't show "Unknown"...
- setPixmap( 0, SmallIcon("unknown") );
+ setPixmap( 0, SmallIcon("text-x-katefilelist") );
} else {
KMimeType::Ptr mtp = KMimeType::mimeType( mimetype );
setText( 1, (mtp && !mtp->comment().isEmpty()) ? mtp->comment() : mimetype );
- setPixmap( 0, mtp ? mtp->pixmap( TDEIcon::Small) : SmallIcon("unknown") );
+ setPixmap( 0, mtp ? mtp->pixmap( TDEIcon::Small) : SmallIcon("text-x-katefilelist") );
}
}