summaryrefslogtreecommitdiff
path: root/src/plugins/imageviewer/imageviewerplugin.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2017-02-08 14:31:55 +0100
committerEike Ziller <eike.ziller@qt.io>2017-02-27 13:54:59 +0000
commitd64e17ad55f155951fc76e4c2f04299aa9c7a912 (patch)
tree16890479318c917c88392035a461e9edbcf76621 /src/plugins/imageviewer/imageviewerplugin.cpp
parentca1d1dfbe2c2b046b5661de20da9e20d4b511680 (diff)
downloadqt-creator-d64e17ad55f155951fc76e4c2f04299aa9c7a912.tar.gz
Move mimetype definitions to plugin specs
- Avoids the hassle of QRC files and manually registering mime types - Avoids performance regressions because of mime types that are registered after mime database has been used - Makes it technically possible to detect that a disabled plugin could handle a mime type if it was enabled Change-Id: I373008b1b56e9c6b4853055f20b3eeb112a6eff9 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/imageviewer/imageviewerplugin.cpp')
-rw-r--r--src/plugins/imageviewer/imageviewerplugin.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/plugins/imageviewer/imageviewerplugin.cpp b/src/plugins/imageviewer/imageviewerplugin.cpp
index 2193c5c43c..6d1419da44 100644
--- a/src/plugins/imageviewer/imageviewerplugin.cpp
+++ b/src/plugins/imageviewer/imageviewerplugin.cpp
@@ -39,7 +39,6 @@
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/id.h>
#include <extensionsystem/pluginmanager.h>
-#include <utils/mimetypes/mimedatabase.h>
namespace ImageViewer {
namespace Internal {
@@ -51,8 +50,6 @@ bool ImageViewerPlugin::initialize(const QStringList &arguments, QString *errorM
Q_UNUSED(arguments)
Q_UNUSED(errorMessage)
- Utils::MimeDatabase::addMimeTypes(QLatin1String(":/imageviewer/ImageViewer.mimetypes.xml"));
-
m_factory = new ImageViewerFactory(this);
addAutoReleasedObject(m_factory);
return true;