diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-05-24 16:25:58 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-05-24 16:25:58 (GMT) |
commit | 9c04d0ffef418ec6c771a0afa4679a4e508ba710 (patch) | |
tree | 8572e4828627ab6b9a6d55d425469176c0c02e0b /addon | |
parent | 9ca6896b9e1e932f3ddf11bb74a9f80d5560044e (diff) | |
download | Doxygen-9c04d0ffef418ec6c771a0afa4679a4e508ba710.zip Doxygen-9c04d0ffef418ec6c771a0afa4679a4e508ba710.tar.gz Doxygen-9c04d0ffef418ec6c771a0afa4679a4e508ba710.tar.bz2 |
Release-1.2.7-20010524
Diffstat (limited to 'addon')
-rw-r--r-- | addon/xmlgen/xml.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addon/xmlgen/xml.cpp b/addon/xmlgen/xml.cpp index ea40d05..6e3a7d6 100644 --- a/addon/xmlgen/xml.cpp +++ b/addon/xmlgen/xml.cpp @@ -493,10 +493,10 @@ void generateXML() t << "<?xml version='1.0' encoding='ISO-8859-1' standalone='no'?>" << endl; t << "<!DOCTYPE doxygen SYSTEM \"doxygen.dtd\">" << endl; t << "<doxygen>" << endl; - if (Doxygen::classList.count()+Doxygen::inputNameList.count()>0) + if (Doxygen::classSDict.count()+Doxygen::inputNameList.count()>0) { t << " <compoundlist>" << endl; - ClassListIterator cli(Doxygen::classList); + ClassSDict::Iterator cli(Doxygen::classSDict); ClassDef *cd; for (cli.toFirst();(cd=cli.current());++cli) { |