Squish: Removing now unused constant defaultQtVersion

Its use was being removed in 6078d7e028

Change-Id: Ib27d7e9a7596fc6358edc1e4a09962951d105752
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
Robert Loehning
2013-06-21 16:22:45 +02:00
parent 161b818b23
commit 89225167fb
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ import re
# the application compiled by Creator
def modifyRunSettingsForHookInto(projectName, kitCount, port):
prepareBuildSettings(kitCount, 0)
# this uses the defaultQtVersion currently
# this uses the default Qt version which Creator activates when opening the project
switchViewTo(ViewConstants.PROJECTS)
switchToBuildOrRunSettingsFor(kitCount, 0, ProjectSettings.BUILD)
qtVersion, mkspec, qtBinPath, qtLibPath = getQtInformationForBuildSettings(kitCount, True)
-2
View File
@@ -275,11 +275,9 @@ origSettingsDir = os.path.abspath(os.path.join(os.getcwd(), "..", "..", "setting
if platform.system() in ('Windows', 'Microsoft'):
sdkPath = "C:\\QtSDK"
origSettingsDir = os.path.join(origSettingsDir, "windows")
defaultQtVersion = "Qt 4.7.4 for Desktop - MinGW 4.4 (Qt SDK)"
else:
sdkPath = os.path.expanduser("~/QtSDK")
origSettingsDir = os.path.join(origSettingsDir, "unix")
defaultQtVersion = "Desktop Qt 4.7.4 for GCC (Qt SDK)"
srcPath = os.getenv("SYSTEST_SRCPATH", sdkPath + "/src")
overrideStartApplication()