diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:29 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:29 -0500 |
commit | 46e2e93fa23ff2b5e1fd9f40046bb96f6e6a2870 (patch) | |
tree | f643c1f8c35237043b62bc9a438c64cfd95237fd /ksysguard/gui | |
parent | 2a34ebd1f8117f3e87bb66226461b9d812327438 (diff) | |
download | tdebase-46e2e93fa23ff2b5e1fd9f40046bb96f6e6a2870.tar.gz tdebase-46e2e93fa23ff2b5e1fd9f40046bb96f6e6a2870.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 'ksysguard/gui')
-rw-r--r-- | ksysguard/gui/SensorDisplayLib/ProcessList.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ksysguard/gui/SensorDisplayLib/ProcessList.cc b/ksysguard/gui/SensorDisplayLib/ProcessList.cc index bf371fd1a..9293ef6a0 100644 --- a/ksysguard/gui/SensorDisplayLib/ProcessList.cc +++ b/ksysguard/gui/SensorDisplayLib/ProcessList.cc @@ -203,7 +203,7 @@ ProcessList::ProcessList(TQWidget *parent, const char* name) aliases.insert("bash", new TQString("shell")); aliases.insert("cat", new TQString("tools")); aliases.insert("egrep", new TQString("tools")); - aliases.insert("emacs", new TQString("wordprocessing")); + aliases.insert("emacs", new TQString("application-vnd.oasis.opendocument.text")); aliases.insert("fgrep", new TQString("tools")); aliases.insert("find", new TQString("tools")); aliases.insert("grep", new TQString("tools")); @@ -215,8 +215,8 @@ ProcessList::ProcessList(TQWidget *parent, const char* name) aliases.insert("su", new TQString("tools")); aliases.insert("tcsh", new TQString("shell")); aliases.insert("tee", new TQString("tools")); - aliases.insert("vi", new TQString("wordprocessing")); - aliases.insert("vim", new TQString("wordprocessing")); + aliases.insert("vi", new TQString("application-vnd.oasis.opendocument.text")); + aliases.insert("vim", new TQString("application-vnd.oasis.opendocument.text")); } /* The filter mode is controlled by a combo box of the parent. If |