From 7b3b9da58e641c1fab127b835f41d73168bf436a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 22 Oct 2014 01:27:26 -0500 Subject: [PATCH] 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 --- plugins/logviewer/logviewerplugin.cpp | 4 ++-- 1 file 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();