diff options
author | albert-github <albert.tests@gmail.com> | 2015-09-30 16:19:33 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2015-09-30 16:19:33 (GMT) |
commit | 6184c70c515941212380006a2e6c879e1663daec (patch) | |
tree | 4448ac4096424ebed3ccf182abf49eafa49863d9 /src | |
parent | 51ee1b0633fbfa935da08c8a13f70da6fc1c074d (diff) | |
download | Doxygen-6184c70c515941212380006a2e6c879e1663daec.zip Doxygen-6184c70c515941212380006a2e6c879e1663daec.tar.gz Doxygen-6184c70c515941212380006a2e6c879e1663daec.tar.bz2 |
Bug 755783 - RTF output has incomplete "References" and "Referenced by" sections
Test for rtfSourceCode was incorrect (see also latexSourceCode) resulting in no output or double output depending on the settig of RTF_SOURCE_CODE
Diffstat (limited to 'src')
-rw-r--r-- | src/definition.cpp | 2 |
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); } |