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
This commit is contained in:
Kevin Ollivier 2009-04-15 17:47:23 +00:00
parent 346662b87a
commit fc76d7df9b

View File

@ -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