diff --git a/share/qtcreator/templates/html5app/app.pro b/share/qtcreator/templates/html5app/app.pro
index 66cddd2618090034d3773074652be87afab39689..42c6c9cdba72d618add817c8f47d10f39dfde54d 100644
--- a/share/qtcreator/templates/html5app/app.pro
+++ b/share/qtcreator/templates/html5app/app.pro
@@ -10,11 +10,6 @@ DEPLOYMENTFOLDERS = folder_01
 # TOUCH_OPTIMIZED_NAVIGATION #
 DEFINES += TOUCH_OPTIMIZED_NAVIGATION
 
-# If your application uses the Qt Mobility libraries, uncomment the following
-# lines and add the respective components to the MOBILITY variable.
-# CONFIG += mobility
-# MOBILITY +=
-
 # The .cpp file which was generated for your project. Feel free to hack it.
 SOURCES += main.cpp
 
diff --git a/src/plugins/qmakeprojectmanager/wizards/qtquickapp.cpp b/src/plugins/qmakeprojectmanager/wizards/qtquickapp.cpp
index bb93d200431d4b7e0742130a0c43b33c86e52602..169afe0cace8ec0e36d378268a9868a26a3ececa 100644
--- a/src/plugins/qmakeprojectmanager/wizards/qtquickapp.cpp
+++ b/src/plugins/qmakeprojectmanager/wizards/qtquickapp.cpp
@@ -249,9 +249,6 @@ void QtQuickApp::handleCurrentProFileTemplateLine(const QString &line,
         if (!nextLine.startsWith(QLatin1String("QML_IMPORT_PATH =")))
             return;
         proFile << nextLine << endl;
-    } else if (line.contains(QLatin1String("# HARMATTAN_BOOSTABLE"))) {
-        QString nextLine = proFileTemplate.readLine(); // eats '# CONFIG += qdeclarative-boostable'
-        proFile << nextLine << endl;
     }
 }