summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index 3b9d404..736ae0a 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -329,11 +329,16 @@ class XMLGenerator : public OutputDocInterface
endNestedPar();
m_t << "</simplesect>";
}
- void startParamList()
+ void startParamList(ParamListTypes t)
{
- m_t << "<parameterlist><title>"; // non DocBook
- // TODO: what kind of list
- // param, retval, exception
+ QCString kind;
+ switch(t)
+ {
+ case Param: kind="param"; break;
+ case RetVal: kind="retval"; break;
+ case Exception: kind="exception"; break;
+ }
+ m_t << "<parameterlist kind=\"" << kind << "\"><title>"; // non DocBook
m_inParamList = TRUE;
}
void endParamList()