summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2005-10-10 19:22:31 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2005-10-10 19:22:31 (GMT)
commitb7ae07dc2e3b4b635cc59a49d326a88d45f9206b (patch)
tree30215767ee72661b15eae6b66e51b409feff64cf /src/xmlgen.cpp
parent22eb9881c15ad001246cfcde1c727a2f98f472df (diff)
downloadDoxygen-b7ae07dc2e3b4b635cc59a49d326a88d45f9206b.zip
Doxygen-b7ae07dc2e3b4b635cc59a49d326a88d45f9206b.tar.gz
Doxygen-b7ae07dc2e3b4b635cc59a49d326a88d45f9206b.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;
}