X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/346662b87a28fed132459db393cdd99132d1c5ca..fc76d7df9baca72f0ac4ab403765146146184ffd:/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