summaryrefslogtreecommitdiffstats
path: root/src/reflist.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2003-04-21 13:56:37 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2003-04-21 13:56:37 (GMT)
commit2eef94da7bc476987b1a46690bbdaeb76a05dd82 (patch)
tree3db0b381fb31e078de0540249c869667f44ec68d /src/reflist.cpp
parent7e0aeda8a19448b44750f2530864432c964b0374 (diff)
downloadDoxygen-2eef94da7bc476987b1a46690bbdaeb76a05dd82.zip
Doxygen-2eef94da7bc476987b1a46690bbdaeb76a05dd82.tar.gz
Doxygen-2eef94da7bc476987b1a46690bbdaeb76a05dd82.tar.bz2
Release-1.3-20030421
Diffstat (limited to 'src/reflist.cpp')
-rw-r--r--src/reflist.cpp30
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;
+//}
+