diff options
author | hjk <qtc-committer@nokia.com> | 2009-01-19 12:39:20 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2009-01-19 12:39:20 +0100 |
commit | cc5ff1ec7414b00a0b216d040ddf69de11aa4303 (patch) | |
tree | 94f6c375e3b6c7e6cba32011666750412188f114 /src/plugins/cppeditor/cppplugin.cpp | |
parent | d55d570d668b0a3497a2b87db0116aa56250e747 (diff) | |
download | qt-creator-cc5ff1ec7414b00a0b216d040ddf69de11aa4303.tar.gz |
Remove #include <extensionsystem/pluginmanager.h> from icore.h, a
forward declaration is sufficient.
Diffstat (limited to 'src/plugins/cppeditor/cppplugin.cpp')
-rw-r--r-- | src/plugins/cppeditor/cppplugin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/cppeditor/cppplugin.cpp b/src/plugins/cppeditor/cppplugin.cpp index 077bea9027..105ca5adbc 100644 --- a/src/plugins/cppeditor/cppplugin.cpp +++ b/src/plugins/cppeditor/cppplugin.cpp @@ -47,6 +47,7 @@ #include <coreplugin/actionmanager/actionmanager.h> #include <coreplugin/actionmanager/command.h> #include <coreplugin/editormanager/editormanager.h> +#include <extensionsystem/pluginmanager.h> #include <texteditor/completionsupport.h> #include <texteditor/fontsettings.h> #include <texteditor/storagesettings.h> @@ -63,7 +64,7 @@ static const char *sourceSuffixKeyC = "CppEditor/SourceSuffix"; using namespace CppEditor::Internal; -///////////////////////////////// CppPluginEditorFactory ////////////////////////////////// +//////////////////////////// CppPluginEditorFactory ///////////////////////////// CppPluginEditorFactory::CppPluginEditorFactory(CppPlugin *owner) : m_kind(QLatin1String(CppEditor::Constants::CPPEDITOR_KIND)), |