diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2010-11-03 10:44:40 +0100 |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2010-11-03 14:06:44 +0100 |
commit | 2ac91abd306215d44d52c70ee6bff4366e16f921 (patch) | |
tree | 07e72fa56fa1b392f2cd7d9b426c4ca433724363 /src | |
parent | 0a03f8325e1372b6542404988a391ae8bc6c162d (diff) | |
download | qt-creator-2ac91abd306215d44d52c70ee6bff4366e16f921.tar.gz |
QmlApp template: Use new 4.7.1 API to enable qml debugging
Qml debugging is now disabled by default, and has to be enabled
explicitly (b2016bbfc9). This has to be done before the
QDView/QDEngine is instantiated ...
The patch introduces a static create method to QmlApplicationViewer,
so that the setup can be hidden from the users main file.
Reviewed-by: Alessandro Portale
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/qt4projectmanager/wizards/qmlstandaloneapp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qt4projectmanager/wizards/qmlstandaloneapp.cpp b/src/plugins/qt4projectmanager/wizards/qmlstandaloneapp.cpp index 807f427492..3a3586229a 100644 --- a/src/plugins/qt4projectmanager/wizards/qmlstandaloneapp.cpp +++ b/src/plugins/qt4projectmanager/wizards/qmlstandaloneapp.cpp @@ -477,7 +477,7 @@ bool QmlStandaloneApp::updateFiles(const QList<QmlAppGeneratedFileInfo> &list, Q return true; } -const int QmlStandaloneApp::StubVersion = 9; +const int QmlStandaloneApp::StubVersion = 10; } // namespace Internal } // namespace Qt4ProjectManager |