summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2005-10-10 19:22:31 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2005-10-10 19:22:31 (GMT)
commitc9ed38abcef60f4ecb9fc08a1ddd936762d5342c (patch)
tree30215767ee72661b15eae6b66e51b409feff64cf /src/xmlgen.cpp
parentc1cf420f89fe57c162372b66bca70ff2e055f48f (diff)
downloadDoxygen-c9ed38abcef60f4ecb9fc08a1ddd936762d5342c.zip
Doxygen-c9ed38abcef60f4ecb9fc08a1ddd936762d5342c.tar.gz
Doxygen-c9ed38abcef60f4ecb9fc08a1ddd936762d5342c.tar.bz2
Release-1.4.5-20051010
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index 0126cc6..3126adc 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -1112,14 +1112,14 @@ static void generateXMLForClass(ClassDef *cd,QTextStream &ti)
t << "\">";
if (!bcd->templSpecifiers.isEmpty())
{
- convertToXML(
- insertTemplateSpecifierInScope(
+ t << convertToXML(
+ insertTemplateSpecifierInScope(
bcd->classDef->displayName(),bcd->templSpecifiers)
);
}
else
{
- convertToXML(bcd->classDef->displayName());
+ t << convertToXML(bcd->classDef->displayName());
}
t << "</basecompoundref>" << endl;
}