diff options
author | Martin Smith <[email protected]> | 2012-04-13 12:55:56 +0200 |
---|---|---|
committer | Qt by Nokia <[email protected]> | 2012-04-14 19:46:00 +0200 |
commit | aabd54b8bbac44ddaf05ca42cc8cdf5d31f3972b (patch) | |
tree | 9ab14f535e82214ac018433aa0f4f1368e38ab10 /src/tools/qdoc/node.cpp | |
parent | eb52d31ddf59d43c2f8cd1e85613b60213fd6696 (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.cpp | 2 |
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; } } |