aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2014-09-28 19:13:59 -0400
committerJake Petroules <jake.petroules@petroules.com>2014-09-29 13:17:17 +0200
commit18a263188753a13704a590c3b54dc7bc86f72360 (patch)
tree3741ab0cbd1febcf171050f9a0ea5e1ddcf49a07
parentf5a66fa26467e918e0b196d9e1768c1cc8c1fa22 (diff)
Fix wrong property names in ib.js
Change-Id: I9419b4a986dda1e2c367e1308bb03f7d96f5a2ef Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
-rw-r--r--share/qbs/modules/ib/ib.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qbs/modules/ib/ib.js b/share/qbs/modules/ib/ib.js
index 86f13ff8c..7e6764c70 100644
--- a/share/qbs/modules/ib/ib.js
+++ b/share/qbs/modules/ib/ib.js
@@ -25,11 +25,11 @@ function prepareIbtoold(product, input, outputs) {
if (input.fileTags.contains("assetcatalog")) {
args.push("--platform", DarwinTools.applePlatformName(product.moduleProperty("qbs", "targetOS")));
- var appIconName = ModUtils.moduleProperty(input, "appIcon");
+ var appIconName = ModUtils.moduleProperty(input, "appIconName");
if (appIconName)
args.push("--app-icon", appIconName);
- var launchImageName = ModUtils.moduleProperty(input, "launchImage");
+ var launchImageName = ModUtils.moduleProperty(input, "launchImageName");
if (launchImageName)
args.push("--launch-image", launchImageName);