Skip to content

Commit

Permalink
Bug 755783 - RTF output has incomplete "References" and "Referenced b…
Browse files Browse the repository at this point in the history
…y" sections

Test for rtfSourceCode was incorrect (see also latexSourceCode) resulting in no output or double output depending on the settig of RTF_SOURCE_CODE
  • Loading branch information
albert-github committed Sep 30, 2015
1 parent 51ee1b0 commit 6184c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/definition.cpp
Expand Up @@ -1219,7 +1219,7 @@ void Definition::_writeSourceRefList(OutputList &ol,const char *scopeName,
{
ol.disable(OutputGenerator::Latex);
}
if (!rtfSourceCode)
if (rtfSourceCode)
{
ol.disable(OutputGenerator::RTF);
}
Expand Down

0 comments on commit 6184c70

Please sign in to comment.