summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2005-02-10 18:38:13 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2005-02-10 18:38:13 (GMT)
commit2ed43d4c3890c98475d4deb87d4a14ab949f90c4 (patch)
tree654e62c3ea86e579f0642040b094a844d4e5223c /src/xmlgen.cpp
parentc00ba20bdfa987c9554d4068fc9ccf1a45fe28f8 (diff)
downloadDoxygen-2ed43d4c3890c98475d4deb87d4a14ab949f90c4.zip
Doxygen-2ed43d4c3890c98475d4deb87d4a14ab949f90c4.tar.gz
Doxygen-2ed43d4c3890c98475d4deb87d4a14ab949f90c4.tar.bz2
Release-1.4.1-20050210
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index 682ad44..2030789 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -493,6 +493,7 @@ static void generateXMLForMember(MemberDef *md,QTextStream &ti,QTextStream &t,De
// - body code
// + template arguments
// (templateArguments(), definitionTemplateParameterLists())
+ // - call graph
// enum values are written as part of the enum
if (md->memberType()==MemberDef::EnumValue) return;
@@ -896,7 +897,7 @@ static void writeInnerClasses(const ClassSDict *cl,QTextStream &t)
ClassDef *cd;
for (cli.toFirst();(cd=cli.current());++cli)
{
- if (cd->name().find('@')!=-1) // skip anonymous scopes
+ if (cd->name().find('@')==-1) // skip anonymous scopes
{
t << " <innerclass refid=\"" << cd->getOutputFileBase()
<< "\">" << convertToXML(cd->name()) << "</innerclass>" << endl;
@@ -913,7 +914,7 @@ static void writeInnerNamespaces(const NamespaceSDict *nl,QTextStream &t)
NamespaceDef *nd;
for (nli.toFirst();(nd=nli.current());++nli)
{
- if (nd->name().find('@')!=-1) // skip anonymouse scopes
+ if (nd->name().find('@')==-1) // skip anonymouse scopes
{
t << " <innernamespace refid=\"" << nd->getOutputFileBase()
<< "\">" << convertToXML(nd->name()) << "</innernamespace>" << endl;