summaryrefslogtreecommitdiffstats
path: root/src/rtfgen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2013-12-01 17:06:52 (GMT)
committeralbert-github <albert.tests@gmail.com>2013-12-01 17:06:52 (GMT)
commitb724106589a1bde5d1f3621051ffd8040f3861ba (patch)
treeae0ae0140d452ade6be4d4f4085fde5c463e402a /src/rtfgen.cpp
parent58058025a8357dcba0da4be0f6c3ddfec8c37839 (diff)
downloadDoxygen-b724106589a1bde5d1f3621051ffd8040f3861ba.zip
Doxygen-b724106589a1bde5d1f3621051ffd8040f3861ba.tar.gz
Doxygen-b724106589a1bde5d1f3621051ffd8040f3861ba.tar.bz2
Bug 668424 - HTML links in RTF output are broken
There are different types of hyperlinks: external and internal. The internal hyperlinks should have \\l behind the word HYPERLINK, the external shouldnt.
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 9a7dbee..d8c34ee 100644
--- a/src/rtfgen.cpp
+++ b/src/rtfgen.cpp
@@ -1049,7 +1049,7 @@ void RTFGenerator::startHtmlLink(const char *url)
if (Config_getBool("RTF_HYPERLINKS"))
{
- t << "{\\field {\\*\\fldinst { HYPERLINK \\\\l \"";
+ t << "{\\field {\\*\\fldinst { HYPERLINK \"";
t << url;
t << "\" }{}";
t << "}{\\fldrslt {\\cs37\\ul\\cf2 ";