summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2007-08-15 18:35:31 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2007-08-15 18:35:31 (GMT)
commit4a93397673029e3cfd4c9e2d0501a109f858b87c (patch)
tree4d3b01807f8eb1364767b33ddb31bfd49b37ef3a /src/xmlgen.cpp
parente832cfbdc161adb81ec992f6ab4356f81b55f6e5 (diff)
downloadDoxygen-4a93397673029e3cfd4c9e2d0501a109f858b87c.zip
Doxygen-4a93397673029e3cfd4c9e2d0501a109f858b87c.tar.gz
Doxygen-4a93397673029e3cfd4c9e2d0501a109f858b87c.tar.bz2
Release-1.5.3-20070815
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index e66bea3..fb21518 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -1170,6 +1170,8 @@ static void generateXMLForClass(ClassDef *cd,QTextStream &ti)
if (cd->name().find('@')!=-1) return; // skip anonymous compounds.
if (cd->templateMaster()!=0) return; // skip generated template instances.
+ msg("Generating XML output for class %s\n",cd->name().data());
+
ti << " <compound refid=\"" << cd->getOutputFileBase()
<< "\" kind=\"" << cd->compoundTypeString()
<< "\"><name>" << convertToXML(cd->name()) << "</name>" << endl;
@@ -1886,7 +1888,6 @@ void generateXML()
ClassDef *cd;
for (cli.toFirst();(cd=cli.current());++cli)
{
- msg("Generating XML output for class %s\n",cd->name().data());
generateXMLForClass(cd,t);
}
}