summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-10-28 10:32:49 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-10-28 10:32:49 (GMT)
commitc90505681054d51da05fd476d08c610d3e20ca38 (patch)
treee18a637a3b53ec4dcf2e9ff6c6b6aba575da6a8a /src
parent3a42bcf6a6ef583015752c705c8923e6b1905c05 (diff)
downloadDoxygen-c90505681054d51da05fd476d08c610d3e20ca38.zip
Doxygen-c90505681054d51da05fd476d08c610d3e20ca38.tar.gz
Doxygen-c90505681054d51da05fd476d08c610d3e20ca38.tar.bz2
RTF layout regarding References and Referenced by
The layout was so that lines were stretched to to complete lines from left to right (Justifid). For "normal" text this is fine, but not for lists like this, so set alignment here to: Left aligned
Diffstat (limited to 'src')
-rw-r--r--src/rtfgen.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp
index b4a9e65..34af705 100644
--- a/src/rtfgen.cpp
+++ b/src/rtfgen.cpp
@@ -2180,11 +2180,12 @@ void RTFGenerator::newParagraph()
m_omitParagraph = FALSE;
}
-void RTFGenerator::startParagraph(const char *)
+void RTFGenerator::startParagraph(const char *txt)
{
DBG_RTF(t << "{\\comment startParagraph}" << endl)
newParagraph();
t << "{" << endl;
+ if (QCString(txt) == "reference") t << "\\ql" << endl;
}
void RTFGenerator::endParagraph()