diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-21 13:56:37 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-21 13:56:37 (GMT) |
commit | ebd0447bcc5d3d75214c847954bfda1d2e8c97f5 (patch) | |
tree | 3db0b381fb31e078de0540249c869667f44ec68d /src/reflist.cpp | |
parent | 3cd2917eca7d09a30636b2b16efcd187bc3bf7c0 (diff) | |
download | Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.zip Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.tar.gz Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.tar.bz2 |
Release-1.3-20030421
Diffstat (limited to 'src/reflist.cpp')
-rw-r--r-- | src/reflist.cpp | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/src/reflist.cpp b/src/reflist.cpp index c3a3951..5293f4e 100644 --- a/src/reflist.cpp +++ b/src/reflist.cpp @@ -20,22 +20,22 @@ /*! Create a list of items that are cross referenced with documentation blocks * @param listName String representing the name of the list. - * @param optionName String representation of the option enabling the list. * @param pageTitle String representing the title of the list page. * @param secTitle String representing the title of the section. - * @param type Type of the section. */ -RefList::RefList(const char *listName,const char *optionName,const char *pageTitle, - const char *secTitle,BaseOutputDocInterface::SectionTypes type) +RefList::RefList(const char *listName, + const char *pageTitle, + const char *secTitle + ) { m_dict = 0; m_dictIterator = 0; m_id = 0; m_listName = listName; - m_optionName = optionName; + //m_optionName = optionName; m_pageTitle = pageTitle; m_secTitle = secTitle; - m_type = type; + /*m_type = type;*/ } /*! Destroy the todo list. Currently not called! */ @@ -95,10 +95,10 @@ QCString RefList::listName() const return m_listName; } -QCString RefList::optionName() const -{ - return m_optionName; -} +//QCString RefList::optionName() const +//{ +// return m_optionName; +//} QCString RefList::pageTitle() const { @@ -110,8 +110,10 @@ QCString RefList::sectionTitle() const return m_secTitle; } -BaseOutputDocInterface::SectionTypes RefList::sectionType() const -{ - return m_type; -} + +//BaseOutputDocInterface::SectionTypes RefList::sectionType() const +//{ +// return m_type; +//} + |