diff options
author | Aurindam Jana <aurindam.jana@nokia.com> | 2011-09-21 16:39:45 +0200 |
---|---|---|
committer | Aurindam Jana <aurindam.jana@nokia.com> | 2011-09-22 12:27:38 +0200 |
commit | 43465cbe7a1fd5b055ce7930a46265972b77f9e1 (patch) | |
tree | 57a35648c1ca7a14718138ea2df30f00ceaee370 /src/plugins/debugger/qml/qmlcppengine.cpp | |
parent | 97b4bcfa6c98a0a3a4dcc6dc6315513f27b7a976 (diff) | |
download | qt-creator-43465cbe7a1fd5b055ce7930a46265972b77f9e1.tar.gz |
Debugger: Show QML Script Console only for QML debugging
Change-Id: Ibb0f03c77a84ee8682d44944e8a24fac54cb60fe
Reviewed-on: http://codereview.qt-project.org/5329
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'src/plugins/debugger/qml/qmlcppengine.cpp')
-rw-r--r-- | src/plugins/debugger/qml/qmlcppengine.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp index ad86dc0209..0f06417e59 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -699,6 +699,11 @@ DebuggerEngine *QmlCppEngine::cppEngine() const return d->m_cppEngine; } +DebuggerEngine *QmlCppEngine::qmlEngine() const +{ + return d->m_qmlEngine; +} + } // namespace Internal } // namespace Debugger |