aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/pluginfilefactory.h
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-05-31 19:35:37 +0200
committerhjk <hjk121@nokiamail.com>2013-08-02 10:21:15 +0200
commitb772001c82579f46b778341a3ad5e444455e7269 (patch)
tree85c49bb225885cafb0e3a8841c73863118d71747 /src/plugins/projectexplorer/pluginfilefactory.h
parentbe112d853a49d7d183819a22d6f776430b0b38e8 (diff)
EditorFactory: Replace some virtual functions with data members
Change-Id: I014cb57460c4e3a36bf7403960908b5ffec867ff Reviewed-by: David Schulz <david.schulz@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/pluginfilefactory.h')
-rw-r--r--src/plugins/projectexplorer/pluginfilefactory.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/projectexplorer/pluginfilefactory.h b/src/plugins/projectexplorer/pluginfilefactory.h
index 68cb962b4c..61dbbfb87e 100644
--- a/src/plugins/projectexplorer/pluginfilefactory.h
+++ b/src/plugins/projectexplorer/pluginfilefactory.h
@@ -48,16 +48,11 @@ class ProjectFileFactory : public Core::IDocumentFactory
explicit ProjectFileFactory(ProjectExplorer::IProjectManager *manager);
public:
- virtual QStringList mimeTypes() const;
- Core::Id id() const;
- QString displayName() const;
-
Core::IDocument *open(const QString &fileName);
static QList<ProjectFileFactory*> createFactories(QString *filterString);
private:
- const QStringList m_mimeTypes;
ProjectExplorer::IProjectManager *m_manager;
};