summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-10-04 14:22:46 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-10-04 14:22:46 (GMT)
commitffff69548813cd6c018973c3c0ae8b06b5e3eadc (patch)
treed6060e09b6ce4cf645db29cbf829c1062f9427c4
parentf365a48e4130d92187890c6a8202d0613944d287 (diff)
parent6184c70c515941212380006a2e6c879e1663daec (diff)
downloadDoxygen-ffff69548813cd6c018973c3c0ae8b06b5e3eadc.zip
Doxygen-ffff69548813cd6c018973c3c0ae8b06b5e3eadc.tar.gz
Doxygen-ffff69548813cd6c018973c3c0ae8b06b5e3eadc.tar.bz2
Merge pull request #400 from albert-github/feature/bug_755783
Bug 755783 - RTF output has incomplete "References" and "Referenced by" sections
-rw-r--r--src/definition.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/definition.cpp b/src/definition.cpp
index 649cea8..d04dd59 100644
--- a/src/definition.cpp
+++ b/src/definition.cpp
@@ -1219,7 +1219,7 @@ void Definition::_writeSourceRefList(OutputList &ol,const char *scopeName,
{
ol.disable(OutputGenerator::Latex);
}
- if (!rtfSourceCode)
+ if (rtfSourceCode)
{
ol.disable(OutputGenerator::RTF);
}