From 18a263188753a13704a590c3b54dc7bc86f72360 Mon Sep 17 00:00:00 2001 From: Jake Petroules Date: Sun, 28 Sep 2014 19:13:59 -0400 Subject: Fix wrong property names in ib.js Change-Id: I9419b4a986dda1e2c367e1308bb03f7d96f5a2ef Reviewed-by: Christian Kandeler --- share/qbs/modules/ib/ib.js | 4 ++-- 1 file 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); -- cgit v1.2.3