summaryrefslogtreecommitdiffstats
path: root/src/rtfgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-09-06 19:53:44 (GMT)
committerGitHub <noreply@github.com>2018-09-06 19:53:44 (GMT)
commit8a1d2cb36aa65687d22ff50086268b5260dfbc80 (patch)
tree17b8089ea79664b6b5b6fa2ab61362af297183aa /src/rtfgen.cpp
parentfab1011ef4b8fce9ad2ea11138d708004c7f036f (diff)
parenta9f1c59479e316ab277521faa2a629f25fde25ba (diff)
downloadDoxygen-8a1d2cb36aa65687d22ff50086268b5260dfbc80.zip
Doxygen-8a1d2cb36aa65687d22ff50086268b5260dfbc80.tar.gz
Doxygen-8a1d2cb36aa65687d22ff50086268b5260dfbc80.tar.bz2
Merge pull request #6477 from albert-github/feature/bug_exception_rtf_latex
Missing opening round bracket in case of an exception
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 e194777..b4a9e65 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 << " ";