diff --git a/share/qtcreator/templates/qmlapp/app.pro b/share/qtcreator/templates/qmlapp/app.pro
index 64432cd37e8dac936fb4582995dc9434e99c38ab..9d119f7bb08b0bd50d659df584ed5db32dfc7dc3 100644
--- a/share/qtcreator/templates/qmlapp/app.pro
+++ b/share/qtcreator/templates/qmlapp/app.pro
@@ -34,9 +34,10 @@ symbian:ICON = symbianicon.svg
 #DEFINES += QMLJSDEBUGGER
 #DEFINES += QMLOBSERVER
 
+# The .cpp file which was generated for your project. Feel free to hack it.
 SOURCES += main.cpp
 
+# Please do not modify the following three lines. Required for deployment.
 include(qmlapplicationviewer/qmlapplicationviewer.pri)
 include(../shared/deployment.pri)
-
 qtcAddDeployment()
diff --git a/share/qtcreator/templates/qmlapp/qmlapplicationviewer/qmlapplicationviewer.pri b/share/qtcreator/templates/qmlapp/qmlapplicationviewer/qmlapplicationviewer.pri
index 8011180fc5ab1b6980a8edef2aa5b676666cd4a6..e6cebacae8f6b0070e631fac28a5826faa1f388b 100644
--- a/share/qtcreator/templates/qmlapp/qmlapplicationviewer/qmlapplicationviewer.pri
+++ b/share/qtcreator/templates/qmlapp/qmlapplicationviewer/qmlapplicationviewer.pri
@@ -1,5 +1,5 @@
 # This file should not be edited.
-# Following versions of Qt Creator might offer new version.
+# Future versions of Qt Creator might offer updated versions of this file.
 
 QT += declarative
 
diff --git a/share/qtcreator/templates/shared/deployment.pri b/share/qtcreator/templates/shared/deployment.pri
index 77a0d84fda753ca354f17736aca1ee25e687b6e0..bb79115aafcf4bb267c8334ca3ea3bff82634c49 100644
--- a/share/qtcreator/templates/shared/deployment.pri
+++ b/share/qtcreator/templates/shared/deployment.pri
@@ -1,5 +1,5 @@
 # This file should not be edited.
-# Following versions of Qt Creator might offer new version.
+# Future versions of Qt Creator might offer updated versions of this file.
 
 defineTest(qtcAddDeployment) {
 for(deploymentfolder, DEPLOYMENTFOLDERS) {
diff --git a/src/plugins/qt4projectmanager/wizards/mobileapp.cpp b/src/plugins/qt4projectmanager/wizards/mobileapp.cpp
index 2debd11802996f2826eea5b881fbc51cb068fe72..ef788660cc5511572b993f0cec8ccd461ee94aad 100644
--- a/src/plugins/qt4projectmanager/wizards/mobileapp.cpp
+++ b/src/plugins/qt4projectmanager/wizards/mobileapp.cpp
@@ -137,7 +137,7 @@ QString MobileApp::mainWindowClassName() const
 
 int MobileApp::stubVersionMinor() const { return StubVersion; }
 
-const int MobileApp::StubVersion = 1;
+const int MobileApp::StubVersion = 2;
 
 } // namespace Internal
 } // namespace Qt4ProjectManager
diff --git a/src/plugins/qt4projectmanager/wizards/qmlstandaloneapp.cpp b/src/plugins/qt4projectmanager/wizards/qmlstandaloneapp.cpp
index d14dc88fb91ab437ecc4e3f3471ab875861685b1..d323107c6645e44325ecca48f002cdf8905311c0 100644
--- a/src/plugins/qt4projectmanager/wizards/qmlstandaloneapp.cpp
+++ b/src/plugins/qt4projectmanager/wizards/qmlstandaloneapp.cpp
@@ -474,7 +474,7 @@ bool QmlStandaloneApp::updateFiles(const QList<QmlAppGeneratedFileInfo> &list, Q
     return true;
 }
 
-const int QmlStandaloneApp::StubVersion = 7;
+const int QmlStandaloneApp::StubVersion = 8;
 
 } // namespace Internal
 } // namespace Qt4ProjectManager