Commit b89fdced authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.2.12

parent f11235dc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.11-20011111
DOXYGEN Version 1.2.12

Please read the installation section of the manual for instructions.

--------
Dimitri van Heesch (11 November 2001)
Dimitri van Heesch (18 November 2001)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.11_20011111
DOXYGEN Version 1.2.12

Please read INSTALL for compilation instructions.

@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (11 November 2001)
Dimitri van Heesch (dimitri@stack.nl) (18 November 2001)
+1 −1
Original line number Diff line number Diff line
1.2.11-20011111
1.2.12
+10 −0
Original line number Diff line number Diff line
@@ -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);
  }
}
+13 −11
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@
#include "sectionhandler.h"
#include "doxmlintf.h"

class MainHandler;
class DocHandler;
class ProgramListingHandler;

@@ -48,6 +49,7 @@ class CompoundHandler : public ICompound, public BaseHandler<CompoundHandler>
    QString id()   const { return m_id;   }
    QString kind() const { return m_kind; }
    QListIterator<ISection> getSectionIterator() const { return m_sections; }
    void initialize(MainHandler *m);

  private:
    struct SuperClass
Loading