diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-06-10 08:55:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-10 08:55:36 (GMT) |
commit | d86bbe7295209421287d6407cf03ea6a9ba8c8a2 (patch) | |
tree | 66412432c73f1fd1c3309c2d2763907e804f8b3b /src/doxygen.cpp | |
parent | f13ef432966ce28da0bccfb93e00e3b5ed7fe7dc (diff) | |
parent | 79ac5232cf029f3d40543641e92daa8aaa1c9f7c (diff) | |
download | Doxygen-d86bbe7295209421287d6407cf03ea6a9ba8c8a2.zip Doxygen-d86bbe7295209421287d6407cf03ea6a9ba8c8a2.tar.gz Doxygen-d86bbe7295209421287d6407cf03ea6a9ba8c8a2.tar.bz2 |
Merge pull request #756 from albert-github/feature/bug_rtf_formula
Add formula (images) to RTF output
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 263b59f..bc244b7 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -11558,6 +11558,12 @@ void generateOutput() Doxygen::formulaList->generateBitmaps(Config_getString(HTML_OUTPUT)); g_s.end(); } + if (Doxygen::formulaList->count()>0 && generateRtf) + { + g_s.begin("Generating bitmaps for formulas in RTF...\n"); + Doxygen::formulaList->generateBitmaps(Config_getString(RTF_OUTPUT)); + g_s.end(); + } if (Config_getBool(SORT_GROUP_NAMES)) { |