aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-05-16 14:22:53 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-05-16 17:03:33 +0200
commitcb48c28848a00dd6985a0f43ac46ecd22c64a8e0 (patch)
tree3fdf8851a479976cdcadc4a6b355dacc31cafc32 /doc/reference
parent4b19f118b6c77c434b03803ef21c44a45903df4f (diff)
undeprecate {input|output}.fileName
Undeprecate the fileName property (which is an alias for filePath) and turn it into a real file name. Change-Id: Iadd4a6fa0c71aa244ac0742512de4de944b879f0 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'doc/reference')
-rw-r--r--doc/reference/items/rule.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/reference/items/rule.qdoc b/doc/reference/items/rule.qdoc
index d594015c5..c31f8d776 100644
--- a/doc/reference/items/rule.qdoc
+++ b/doc/reference/items/rule.qdoc
@@ -79,7 +79,7 @@
args.push(output.filePath);
var compilerPath = ModUtils.moduleProperty(product, 'compilerPath');
var cmd = new Command(compilerPath, args);
- cmd.description = 'compiling ' + FileInfo.fileName(input.filePath);
+ cmd.description = 'compiling ' + input.fileName;
cmd.highlight = 'compiler';
return cmd;
}