diff options
Diffstat (limited to 'src/plugins/pythoneditor/pythoneditorplugin.cpp')
-rw-r--r-- | src/plugins/pythoneditor/pythoneditorplugin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/pythoneditor/pythoneditorplugin.cpp b/src/plugins/pythoneditor/pythoneditorplugin.cpp index b49ae92f48..1f8ec02163 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.cpp +++ b/src/plugins/pythoneditor/pythoneditorplugin.cpp @@ -33,6 +33,7 @@ #include "wizard/pythonclasswizard.h" #include "pythoneditorwidget.h" #include "pythoneditorfactory.h" +#include "tools/pythonhighlighterfactory.h" #include <coreplugin/icore.h> #include <coreplugin/coreconstants.h> @@ -252,6 +253,7 @@ bool PythonEditorPlugin::initialize( //////////////////////////////////////////////////////////////////////////// addAutoReleasedObject(new FileWizard(Core::ICore::instance())); addAutoReleasedObject(new ClassWizard(Core::ICore::instance())); + addAutoReleasedObject(new Internal::PythonHighlighterFactory); return true; } |