summaryrefslogtreecommitdiffstats
path: root/quanta/treeviews/docfolder.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:31 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:31 -0500
commit5f4f5e427b04f0c4b5921cb845041dfc4f1ac566 (patch)
treeb4f0259eeb4904437252a8f0eaee73ff7dee1fa7 /quanta/treeviews/docfolder.cpp
parent9d0863a62aa90031465aa28b7cf771a18b2661d1 (diff)
downloadtdewebdev-5f4f5e427b04f0c4b5921cb845041dfc4f1ac566.tar.gz
tdewebdev-5f4f5e427b04f0c4b5921cb845041dfc4f1ac566.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 'quanta/treeviews/docfolder.cpp')
-rw-r--r--quanta/treeviews/docfolder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/quanta/treeviews/docfolder.cpp b/quanta/treeviews/docfolder.cpp
index 358fec8a..ac2e840d 100644
--- a/quanta/treeviews/docfolder.cpp
+++ b/quanta/treeviews/docfolder.cpp
@@ -45,7 +45,7 @@ DocFolder::DocFolder(TQListViewItem *parent, const TQString &_name, TDEConfig *c
if ( item[0] != '#' ) {
TQString url = config->readEntry( item );
DocItem *el = new DocItem( this, TQString(item), basePath+url);
- el->setPixmap( 0, SmallIcon("info") );
+ el->setPixmap( 0, SmallIcon("application-vnd.tde.info") );
} else
if ( item[0] == '#' ) { // current item is folder
item++; // remove leading #
@@ -75,7 +75,7 @@ DocFolder::DocFolder(TQListView *parent, const TQString &_name, TDEConfig *confi
if ( item[0] != '#' ) {
TQString url = config->readEntry( item );
DocItem *el = new DocItem( this, TQString(item), basePath+url);
- el->setPixmap( 0, SmallIcon("info") );
+ el->setPixmap( 0, SmallIcon("application-vnd.tde.info") );
} else
if ( item[0] == '#' ) { // current item is folder
item++; // remove leading #