X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0ed9af4ed99cee364fcba36c5c324412dc19bafe..1c7a6772c17dd639d03390f830884e2e122e26c3:/docs/doxygen/doxymlparser.py diff --git a/docs/doxygen/doxymlparser.py b/docs/doxygen/doxymlparser.py index 010eb88c04..9b04d736f3 100755 --- a/docs/doxygen/doxymlparser.py +++ b/docs/doxygen/doxymlparser.py @@ -54,7 +54,7 @@ class ClassDefinition: str_repr = """ Class: %s Bases: %s -Inlcudes: %s +Includes: %s Brief Description: %s @@ -98,9 +98,10 @@ def getTextValue(node, recursive=False): if child.nodeType == child.ELEMENT_NODE and child.nodeName == "ref": text += getTextValue(child) if child.nodeType == child.TEXT_NODE: - text += child.nodeValue.strip() + # Add a space to ensure we have a space between qualifiers and parameter names + text += child.nodeValue.strip() + " " - return text + return text.strip() def doxyMLToText(node): return text