From fc76d7df9baca72f0ac4ab403765146146184ffd Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Wed, 15 Apr 2009 17:47:23 +0000 Subject: [PATCH] Add a space to ensure we have a space between qualifiers and parameter names git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60167 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/doxygen/doxymlparser.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 -- 2.45.2