summaryrefslogtreecommitdiffstats
path: root/src/rtfgen.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-06-29 20:14:58 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-06-29 20:14:58 (GMT)
commit9f83539241a64ce7f74d80c118e555e1fc8f8077 (patch)
treee669e210441ef87fa9a366b99d90a0c8d8ae944b /src/rtfgen.cpp
parent0bb78ec1f61b95b550b65361081c01a104728341 (diff)
downloadDoxygen-9f83539241a64ce7f74d80c118e555e1fc8f8077.zip
Doxygen-9f83539241a64ce7f74d80c118e555e1fc8f8077.tar.gz
Doxygen-9f83539241a64ce7f74d80c118e555e1fc8f8077.tar.bz2
Release-1.7.4-20110629
Diffstat (limited to 'src/rtfgen.cpp')
-rw-r--r--src/rtfgen.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp
index 0cebf87..da60111 100644
--- a/src/rtfgen.cpp
+++ b/src/rtfgen.cpp
@@ -2652,13 +2652,19 @@ void RTFGenerator::endParamList()
void RTFGenerator::startParameterType(bool first,const char *key)
{
- DBG_RTF(t << "{\\comment (startParameterList)}" << endl)
+ DBG_RTF(t << "{\\comment (startParameterType)}" << endl)
if (!first && key)
{
t << " " << key << " ";
}
}
+void RTFGenerator::endParameterType()
+{
+ DBG_RTF(t << "{\\comment (endParameterType)}" << endl)
+ t << " ";
+}
+
void RTFGenerator::printDoc(DocNode *n,const char *langExt)
{
RTFDocVisitor *visitor = new RTFDocVisitor(t,*this,langExt);