summaryrefslogtreecommitdiffstats
path: root/addon/xmlparse/compoundhandler.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-11-18 14:52:40 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-11-18 14:52:40 (GMT)
commitb89fdced7a88c9222faa0d646923bd09fb1765f8 (patch)
tree066b0bffed86445dbe3d494eaf31515f5b743e8c /addon/xmlparse/compoundhandler.cpp
parentf11235dce05843401bccaae6dfcee8f65ac9da1d (diff)
downloadDoxygen-b89fdced7a88c9222faa0d646923bd09fb1765f8.zip
Doxygen-b89fdced7a88c9222faa0d646923bd09fb1765f8.tar.gz
Doxygen-b89fdced7a88c9222faa0d646923bd09fb1765f8.tar.bz2
Release-1.2.12
Diffstat (limited to 'addon/xmlparse/compoundhandler.cpp')
-rw-r--r--addon/xmlparse/compoundhandler.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/addon/xmlparse/compoundhandler.cpp b/addon/xmlparse/compoundhandler.cpp
index 0b22ef2..0b420bf 100644
--- a/addon/xmlparse/compoundhandler.cpp
+++ b/addon/xmlparse/compoundhandler.cpp
@@ -136,3 +136,13 @@ void CompoundHandler::addSubClass(const QXmlAttributes& attrib)
m_subClasses.append(sc);
}
+void CompoundHandler::initialize(MainHandler *m)
+{
+ QListIterator<ISection> msi(m_sections);
+ SectionHandler *sec;
+ for (;(sec=(SectionHandler *)msi.current());++msi)
+ {
+ sec->initialize(m);
+ }
+}
+