summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:26 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:26 -0500
commit7b3b9da58e641c1fab127b835f41d73168bf436a (patch)
tree21e930de74ff041b2ea37d97b1adfff073b480eb
parent911d0db0e788fec1de66dac13401940d824ce6ff (diff)
downloadktorrent-7b3b9da5.tar.gz
ktorrent-7b3b9da5.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
-rw-r--r--plugins/logviewer/logviewerplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/logviewer/logviewerplugin.cpp b/plugins/logviewer/logviewerplugin.cpp
index b586aad..55ccb9f 100644
--- a/plugins/logviewer/logviewerplugin.cpp
+++ b/plugins/logviewer/logviewerplugin.cpp
@@ -42,7 +42,7 @@ namespace kt
LogViewerPlugin::LogViewerPlugin(TQObject* parent, const char* qt_name, const TQStringList& args)
: Plugin(parent, qt_name, args, NAME,i18n("Log Viewer"), AUTHOR, EMAIL,
- i18n("Displays ktorrent logging output"),"log")
+ i18n("Displays ktorrent logging output"),"text-x-log")
{
lv = 0;
}
@@ -55,7 +55,7 @@ namespace kt
void LogViewerPlugin::load()
{
lv = new LogViewer();
- this->getGUI()->addToolWidget(lv,"log",i18n("Log Viewer"),GUIInterface::DOCK_BOTTOM);
+ this->getGUI()->addToolWidget(lv,"text-x-log",i18n("Log Viewer"),GUIInterface::DOCK_BOTTOM);
bt::Log & lg = Globals::instance().getLog(0);
lg.addMonitor(lv);
pref = new LogPrefPage();