aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmljstools/qmljstoolsplugin.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2015-11-10 16:59:02 +0100
committerUlf Hermann <[email protected]>2015-12-09 12:06:26 +0000
commit33651877d83cf2ec9f562d1fa3dd9c726944c0dd (patch)
tree42f95c4c60b9c6f489550a89a2833ecb0ba1b642 /src/plugins/qmljstools/qmljstoolsplugin.cpp
parent0e76b9910835dae0621adab2f5de3b8584999d25 (diff)
Move QmlConsole to Debugger
Now it is closer to its only user and possibly reusable for no-QML uses there. We also drop the QML/JS syntax checker. The application being debugged can already tell us about syntax errors. There is no need to duplicate that functionality. Change-Id: I2ba151f9f4c854c6119ba5462c21be40bddcebf9 Reviewed-by: Ulf Hermann <[email protected]> Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/qmljstools/qmljstoolsplugin.cpp')
-rw-r--r--src/plugins/qmljstools/qmljstoolsplugin.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/plugins/qmljstools/qmljstoolsplugin.cpp b/src/plugins/qmljstools/qmljstoolsplugin.cpp
index 8c2f637fed6..caa0b29ae5d 100644
--- a/src/plugins/qmljstools/qmljstoolsplugin.cpp
+++ b/src/plugins/qmljstools/qmljstoolsplugin.cpp
@@ -35,7 +35,6 @@
#include "qmljscodestylesettingspage.h"
#include "qmljstoolsconstants.h"
#include "qmljstoolssettings.h"
-#include "qmlconsolemanager.h"
#include "qmljsbundleprovider.h"
#include <coreplugin/icontext.h>
@@ -67,7 +66,6 @@ QmlJSToolsPlugin::~QmlJSToolsPlugin()
{
m_instance = 0;
m_modelManager = 0; // deleted automatically
- m_consoleManager = 0; // deleted automatically
}
bool QmlJSToolsPlugin::initialize(const QStringList &arguments, QString *error)
@@ -81,7 +79,6 @@ bool QmlJSToolsPlugin::initialize(const QStringList &arguments, QString *error)
// Objects
m_modelManager = new ModelManager(this);
- m_consoleManager = new QmlConsoleManager(this);
// VCSManager *vcsManager = core->vcsManager();
// DocumentManager *fileManager = core->fileManager();