aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/wix/WiXModule.qbs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-05-16 14:24:29 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-05-20 13:54:01 +0200
commit67f05790924646fe3623976f7794e2e7c97e3c3a (patch)
tree2d751fa3ebbc98194250080b946035b4ae37d984 /share/qbs/modules/wix/WiXModule.qbs
parentdb6d4dbe277469b5b39413ca51b9067559566b28 (diff)
use {input|output}.fileName where appropriate
Change-Id: I793210ba6eeeb3a15e78282e14b8e5ad6459c078 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'share/qbs/modules/wix/WiXModule.qbs')
-rw-r--r--share/qbs/modules/wix/WiXModule.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qbs/modules/wix/WiXModule.qbs b/share/qbs/modules/wix/WiXModule.qbs
index 64df89767..39a56f5f8 100644
--- a/share/qbs/modules/wix/WiXModule.qbs
+++ b/share/qbs/modules/wix/WiXModule.qbs
@@ -280,7 +280,7 @@ Module {
args.push(FileInfo.toWindowsSeparators(inputs.wxs[0].filePath));
var cmd = new Command(ModUtils.moduleProperty(product, "compilerPath"), args);
- cmd.description = "compiling " + FileInfo.fileName(inputs.wxs[0].filePath);
+ cmd.description = "compiling " + inputs.wxs[0].fileName;
cmd.highlight = "compiler";
cmd.workingDirectory = FileInfo.path(output.filePath);
return cmd;
@@ -377,7 +377,7 @@ Module {
}
var cmd = new Command(ModUtils.moduleProperty(product, "linkerPath"), args);
- cmd.description = "linking " + FileInfo.fileName(primaryOutput.filePath);
+ cmd.description = "linking " + primaryOutput.fileName;
cmd.highlight = "linker";
cmd.workingDirectory = FileInfo.path(primaryOutput.filePath);
return cmd;