]> git.saurik.com Git - wxWidgets.git/commitdiff
Add a space to ensure we have a space between qualifiers and parameter names
authorKevin Ollivier <kevino@theolliviers.com>
Wed, 15 Apr 2009 17:47:23 +0000 (17:47 +0000)
committerKevin Ollivier <kevino@theolliviers.com>
Wed, 15 Apr 2009 17:47:23 +0000 (17:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60167 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/doxygen/doxymlparser.py

index 010eb88c045735c849931d4d469846f2b0d76355..9b04d736f324726abb5ffc46ed12aed1fac8d8ec 100755 (executable)
@@ -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