diff options
| author | Eike Ziller <git@eikeziller.de> | 2017-04-23 08:39:41 +0200 |
|---|---|---|
| committer | Eike Ziller <git@eikeziller.de> | 2017-10-01 20:11:08 +0200 |
| commit | 7f7a95d2352a0cf913f0f12fe188e03b256a7b51 (patch) | |
| tree | 85b1dcd83909b3fd914e8d20053ef21a83bb90ac /plugins/haskell/haskellplugin.cpp | |
| parent | 3fbbbd1e83b44e1a49a66245cd451b32a591b463 (diff) | |
Register a haskell editor factory
Diffstat (limited to 'plugins/haskell/haskellplugin.cpp')
| -rw-r--r-- | plugins/haskell/haskellplugin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/haskell/haskellplugin.cpp b/plugins/haskell/haskellplugin.cpp index 1e0c4ab..8df9961 100644 --- a/plugins/haskell/haskellplugin.cpp +++ b/plugins/haskell/haskellplugin.cpp @@ -25,6 +25,7 @@ #include "haskellplugin.h" #include "haskellconstants.h" +#include "haskelleditorfactory.h" namespace Haskell { namespace Internal { @@ -52,6 +53,8 @@ bool HaskellPlugin::initialize(const QStringList &arguments, QString *errorStrin Q_UNUSED(arguments) Q_UNUSED(errorString) + addAutoReleasedObject(new HaskellEditorFactory); + return true; } |
