diff --git a/share/qtcreator/templates/qml/qtquick_1_1/template.xml b/share/qtcreator/templates/qml/qtquick_1_1/template.xml
index 51b653bafe042aab5e72fa3baaa3ddc9d528e6e7..3d033e0c45659955aa12947e73884bd05e270489 100644
--- a/share/qtcreator/templates/qml/qtquick_1_1/template.xml
+++ b/share/qtcreator/templates/qml/qtquick_1_1/template.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<template openeditor="main.qml" priority="F"
+<template openeditor="main.qml" priority="E"
     featuresRequired="QtSupport.Wizards.FeatureQtQuickProject, QtSupport.Wizards.FeatureQtQuick, QtSupport.Wizards.FeatureQtQuick.1.1">
     <displayname>Qt Quick 1.1</displayname>
     <description>Creates a Qt Quick 1 UI project with a single QML file that contains the main view. You can review Qt Quick 1 UI projects in the QML Viewer and you need not build them. You do not need to have the development environment installed on your computer to create and run this type of project. Requires Qt 4.8 or newer.</description>
diff --git a/share/qtcreator/templates/qml/qtquick_2_0/main.qml b/share/qtcreator/templates/qml/qtquick_2_0/main.qml
deleted file mode 100644
index b3d4ef33d489b35dba76416448ff279d33e1bbc0..0000000000000000000000000000000000000000
--- a/share/qtcreator/templates/qml/qtquick_2_0/main.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
-    width: 360
-    height: 360
-    Text {
-        anchors.centerIn: parent
-        text: "Hello World"
-    }
-    MouseArea {
-        anchors.fill: parent
-        onClicked: {
-            Qt.quit();
-        }
-    }
-}
-
diff --git a/share/qtcreator/templates/qml/qtquick_2_0/main.qmlproject b/share/qtcreator/templates/qml/qtquick_2_0/main.qmlproject
deleted file mode 100644
index 63dafff88ed7f913e3dcd299953db2cdfe1b784a..0000000000000000000000000000000000000000
--- a/share/qtcreator/templates/qml/qtquick_2_0/main.qmlproject
+++ /dev/null
@@ -1,21 +0,0 @@
-/* File generated by Qt Creator */
-
-import QmlProject 1.1
-
-Project {
-// QTC_REPLACE main.qml WITH main
-    mainFile: "main.qml"
-
-    /* Include .qml, .js, and image files from current directory and subdirectories */
-    QmlFiles {
-        directory: "."
-    }
-    JavaScriptFiles {
-        directory: "."
-    }
-    ImageFiles {
-        directory: "."
-    }
-    /* List of plugin directories passed to QML runtime */
-    // importPaths: [ "../exampleplugin" ]
-}
diff --git a/share/qtcreator/templates/qml/qtquick_2_0/template.xml b/share/qtcreator/templates/qml/qtquick_2_0/template.xml
deleted file mode 100644
index 9caad365ea6f0e09fd75ed42bef9b90b226139ba..0000000000000000000000000000000000000000
--- a/share/qtcreator/templates/qml/qtquick_2_0/template.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<template openeditor="main.qml" priority="E"
-    featuresRequired="QtSupport.Wizards.FeatureQtQuickProject, QtSupport.Wizards.FeatureQtQuick, QtSupport.Wizards.FeatureQtQuick.2">
-    <displayname>Qt Quick 2.0</displayname>
-    <description>Creates a Qt Quick 2 UI project with a single QML file that contains the main view. You can review Qt Quick 2 UI projects in the QML Scene and you need not build them. You do not need to have the development environment installed on your computer to create and run this type of project. Requires Qt 5.0 or newer.</description>
-</template>