diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2012-04-18 13:31:36 +0200 |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2012-04-24 15:46:18 +0200 |
commit | 84cb289ae327401c4b4cf77b905f8e9e798fa958 (patch) | |
tree | a44a77fc4339b820e43f22774beea6dfe107232a /src/plugins/qmljsinspector/qmljsclientproxy.cpp | |
parent | 9283d7d50f67a5c76adacd6a0acaad1dfc912331 (diff) | |
download | qt-creator-84cb289ae327401c4b4cf77b905f8e9e798fa958.tar.gz |
QmlJS: Remove 'qmljsprivateapi.h' header
That's a reminiscent of the times when qmljs was just a copy
of the classes in Qt.
Rather include the files individually.
Change-Id: I6ff8541c004ef4dab9d9d4f5011ff6c5a3a0574a
Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
Diffstat (limited to 'src/plugins/qmljsinspector/qmljsclientproxy.cpp')
-rw-r--r-- | src/plugins/qmljsinspector/qmljsclientproxy.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/qmljsinspector/qmljsclientproxy.cpp b/src/plugins/qmljsinspector/qmljsclientproxy.cpp index 232e0227f7..f0915145cf 100644 --- a/src/plugins/qmljsinspector/qmljsclientproxy.cpp +++ b/src/plugins/qmljsinspector/qmljsclientproxy.cpp @@ -31,7 +31,6 @@ **************************************************************************/ #include "qmljsclientproxy.h" -#include "qmljsprivateapi.h" #include "qmltoolsclient.h" #include "qmljsinspector.h" @@ -43,6 +42,8 @@ #include <extensionsystem/pluginmanager.h> #include <utils/qtcassert.h> #include <projectexplorer/project.h> +#include <qmldebug/declarativeenginedebugclient.h> +#include <qmldebug/qmlenginedebugclient.h> #include <QUrl> #include <QAbstractSocket> |