From 3573b2db7f741b6239c1fb746c16b8ebdaff075b Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 21 Jan 2020 15:53:07 +0100 Subject: [PATCH] Squish: Fix wizard template categories Change-Id: Ifb26430c429dc41ea73789a210f93b80e0e8d3f2 Reviewed-by: Robert Loehning --- tests/system/shared/project.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py index 7ea25299e52..4219d77df7f 100644 --- a/tests/system/shared/project.py +++ b/tests/system/shared/project.py @@ -215,7 +215,7 @@ def __modifyAvailableTargets__(available, requiredQt, asStrings=False): # param checks turns tests in the function on if set to True def createProject_Qt_GUI(path, projectName, checks = True, addToVersionControl = ""): template = "Qt Widgets Application" - available = __createProjectOrFileSelectType__(" Application", template) + available = __createProjectOrFileSelectType__(" Application (Qt)", template) __createProjectSetNameAndPath__(path, projectName, checks) __handleBuildSystem__(None) @@ -256,7 +256,7 @@ def createProject_Qt_GUI(path, projectName, checks = True, addToVersionControl = # param projectName is the name for the new project # param checks turns tests in the function on if set to True def createProject_Qt_Console(path, projectName, checks = True, buildSystem = None): - available = __createProjectOrFileSelectType__(" Application", "Qt Console Application") + available = __createProjectOrFileSelectType__(" Application (Qt)", "Qt Console Application") __createProjectSetNameAndPath__(path, projectName, checks) __handleBuildSystem__(buildSystem) __createProjectHandleTranslationSelection__() @@ -281,7 +281,7 @@ def createNewQtQuickApplication(workingDir, projectName=None, targets=Targets.desktopTargetClasses(), minimumQtVersion="5.6", template="Qt Quick Application - Empty", fromWelcome=False, buildSystem=None): - available = __createProjectOrFileSelectType__(" Application", template, fromWelcome) + available = __createProjectOrFileSelectType__(" Application (Qt Quick)", template, fromWelcome) projectName = __createProjectSetNameAndPath__(workingDir, projectName) __handleBuildSystem__(buildSystem) requiredQt = __createProjectHandleQtQuickSelection__(minimumQtVersion)