summaryrefslogtreecommitdiffstats
path: root/parts/doxygen
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
commit50be8112bdb941ec5cc0f86bac1b0ab14ee2cf79 (patch)
tree5f76285d6c461843d58c1b4e93d84614efffbb90 /parts/doxygen
parent847b6192a9eee538a6d62a0cbbbfffd5270744ac (diff)
downloadtdevelop-50be8112bdb941ec5cc0f86bac1b0ab14ee2cf79.tar.gz
tdevelop-50be8112bdb941ec5cc0f86bac1b0ab14ee2cf79.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 'parts/doxygen')
-rw-r--r--parts/doxygen/input.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/parts/doxygen/input.cpp b/parts/doxygen/input.cpp
index d8a1ebc7..1194d0bc 100644
--- a/parts/doxygen/input.cpp
+++ b/parts/doxygen/input.cpp
@@ -219,7 +219,7 @@ InputString::InputString(const TQString & label,
if (m == StringFile || m == StringDir) {
br = new TQPushButton(this);
- br->setPixmap(SmallIcon(m==StringFile? "document" : "folder"));
+ br->setPixmap(SmallIcon(m==StringFile? "text-x-generic" : "folder"));
TQToolTip::add(br, m==StringFile? i18n("Browse to a file") : i18n("Browse to a folder"));
layout->addWidget(br, 0, 2);
}
@@ -362,7 +362,7 @@ InputStrList::InputStrList(const TQString & label,
if (lm != ListString) {
if (lm & ListFile) {
brFile = new TQPushButton(dw);
- brFile->setPixmap(SmallIcon("document"));
+ brFile->setPixmap(SmallIcon("text-x-generic"));
TQToolTip::add(brFile, i18n("Browse to a file"));
boxlayout->addWidget(brFile);
}