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:
@@ -54,7 +54,7 @@ class ClassDefinition:
|
|||||||
str_repr = """
|
str_repr = """
|
||||||
Class: %s
|
Class: %s
|
||||||
Bases: %s
|
Bases: %s
|
||||||
Inlcudes: %s
|
Includes: %s
|
||||||
Brief Description:
|
Brief Description:
|
||||||
%s
|
%s
|
||||||
|
|
||||||
@@ -98,9 +98,10 @@ def getTextValue(node, recursive=False):
|
|||||||
if child.nodeType == child.ELEMENT_NODE and child.nodeName == "ref":
|
if child.nodeType == child.ELEMENT_NODE and child.nodeName == "ref":
|
||||||
text += getTextValue(child)
|
text += getTextValue(child)
|
||||||
if child.nodeType == child.TEXT_NODE:
|
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):
|
def doxyMLToText(node):
|
||||||
return text
|
return text
|
||||||
|
Reference in New Issue
Block a user