Branch: master

7b3b9da5 2014-10-22 01:27:26 Timothy Pearson
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
M plugins/logviewer/logviewerplugin.cpp
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 @@
 
 	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 @@
 	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();