summaryrefslogtreecommitdiffstats
path: root/src/rtfgen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-08-31 11:08:06 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-08-31 11:08:06 (GMT)
commita9f1c59479e316ab277521faa2a629f25fde25ba (patch)
tree4537faa580ad7be142a20bdc719c69f2a461f888 /src/rtfgen.cpp
parenta3ef054f5d2af360fa7541e01a6de102d1c7c147 (diff)
downloadDoxygen-a9f1c59479e316ab277521faa2a629f25fde25ba.zip
Doxygen-a9f1c59479e316ab277521faa2a629f25fde25ba.tar.gz
Doxygen-a9f1c59479e316ab277521faa2a629f25fde25ba.tar.bz2
Missing opening round bracket in case of an exception
In case of RTF / LaTeX the opening round bracket was missing after the word "throw" (see e.g. in the manual the `\fn` example the detailed function description)
Diffstat (limited to 'src/rtfgen.cpp')
-rw-r--r--src/rtfgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp
index e2de5ab..8a5b3c8 100644
--- a/src/rtfgen.cpp
+++ b/src/rtfgen.cpp
@@ -2795,7 +2795,7 @@ void RTFGenerator::exceptionEntry(const char* prefix,bool closeBracket)
{
DBG_RTF(t << "{\\comment (exceptionEntry)}" << endl)
if (prefix)
- t << " " << prefix;
+ t << " " << prefix << "(";
else if (closeBracket)
t << ")";
t << " ";