diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-02-11 18:24:41 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-02-11 18:24:41 (GMT) |
commit | 863353b89b228b87789e6d6c9257605acd796fff (patch) | |
tree | f98b164f024c28a0d6378b68142ed268239dba97 /src/doxygen.cpp | |
parent | 1b90a1cf58b6b94d00e28d8212828956e8f9d177 (diff) | |
download | Doxygen-863353b89b228b87789e6d6c9257605acd796fff.zip Doxygen-863353b89b228b87789e6d6c9257605acd796fff.tar.gz Doxygen-863353b89b228b87789e6d6c9257605acd796fff.tar.bz2 |
Release-1.2.5-20010211
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 9523342..4964bc0 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -6405,12 +6405,6 @@ void generateOutput() writeGraphicalClassHierarchy(*outputList); } - //if (Config::generateXML) - //{ - // msg("Generating XML output\n"); - // generateXML(); - //} - if (Doxygen::formulaList.count()>0 && Config::generateHtml) { msg("Generating bitmaps for formulas in HTML...\n"); @@ -6439,8 +6433,7 @@ void generateOutput() delete tag; } - - if (Config::generateHtml) removeDoxFont(Config::htmlOutputDir); - if (Config::generateRTF) removeDoxFont(Config::rtfOutputDir); + if (Config::generateHtml && Config::dotCleanUp) removeDoxFont(Config::htmlOutputDir); + if (Config::generateRTF && Config::dotCleanUp) removeDoxFont(Config::rtfOutputDir); } |