summaryrefslogtreecommitdiffstats
path: root/src/rtfgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2010-01-24 22:18:59 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2010-01-24 22:18:59 (GMT)
commit3eb607c72338237e65fc44562b153db7ce4e0ac9 (patch)
tree2ceed71b80fa23429f6aeb4a62fe9ca3ea9499d1 /src/rtfgen.cpp
parent05b70e8e2c6e0cda9b74fc99fd782d1977d298c9 (diff)
downloadDoxygen-3eb607c72338237e65fc44562b153db7ce4e0ac9.zip
Doxygen-3eb607c72338237e65fc44562b153db7ce4e0ac9.tar.gz
Doxygen-3eb607c72338237e65fc44562b153db7ce4e0ac9.tar.bz2
Release-1.6.2-20100124
Diffstat (limited to 'src/rtfgen.cpp')
-rw-r--r--src/rtfgen.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp
index cff30e0..b2541a6 100644
--- a/src/rtfgen.cpp
+++ b/src/rtfgen.cpp
@@ -2,7 +2,7 @@
*
*
*
- * Copyright (C) 1997-2008 by Parker Waechter & Dimitri van Heesch.
+ * Copyright (C) 1997-2010 by Parker Waechter & Dimitri van Heesch.
*
* Style sheet additions by Alexander Bartolich
*
@@ -2710,6 +2710,15 @@ void RTFGenerator::endConstraintList()
t << "}";
}
+void RTFGenerator::startIndexListItem()
+{
+ DBG_RTF(t << "{\\comment (startIndexListItem)}" << endl)
+}
+void RTFGenerator::endIndexListItem()
+{
+ DBG_RTF(t << "{\\comment (endIndexListItem)}" << endl)
+ t << "\\par" << endl;
+}