summaryrefslogtreecommitdiffstats
path: root/src/tools/qdoc/node.cpp
diff options
context:
space:
mode:
authorMartin Smith <[email protected]>2012-04-13 12:55:56 +0200
committerQt by Nokia <[email protected]>2012-04-14 19:46:00 +0200
commitaabd54b8bbac44ddaf05ca42cc8cdf5d31f3972b (patch)
tree9ab14f535e82214ac018433aa0f4f1368e38ab10 /src/tools/qdoc/node.cpp
parenteb52d31ddf59d43c2f8cd1e85613b60213fd6696 (diff)
qdoc: Fixed bugs causing invalid DITA XML
Fixed a bug in qdoc that caused too many end elements to be generated. Also fixed some doc errors that caused invalid DITA to be generated. Task nr: QTBUG-25302 Change-Id: Ifbbf457d28c51c2691a252888447739da7713bc9 Reviewed-by: Martin Smith <[email protected]> Reviewed-by: Casper van Donderen <[email protected]>
Diffstat (limited to 'src/tools/qdoc/node.cpp')
-rw-r--r--src/tools/qdoc/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/qdoc/node.cpp b/src/tools/qdoc/node.cpp
index 1ee4719f9a1..24c0006dae7 100644
--- a/src/tools/qdoc/node.cpp
+++ b/src/tools/qdoc/node.cpp
@@ -2280,7 +2280,7 @@ bool QmlPropertyNode::isWritable(Tree* tree)
return pn->isWritable();
}
else {
- location().warning(tr("Can't detect if QML property %1 isread-only; writable assumed.").arg(name()));
+ location().warning(tr("Can't detect if QML property %1 is read-only; writable assumed.").arg(name()));
return true;
}
}