diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2006-08-09 08:29:54 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2006-08-09 08:29:54 (GMT) |
commit | cdd729544999bf6ff5ce3efb5a64957058f040f3 (patch) | |
tree | a09074ed1c9a5c1efb292f69db4f9bbb3a97cb19 /src/formula.cpp | |
parent | 243272688a4a3bc7921b7d05dda927f4adf3036c (diff) | |
download | Doxygen-cdd729544999bf6ff5ce3efb5a64957058f040f3.zip Doxygen-cdd729544999bf6ff5ce3efb5a64957058f040f3.tar.gz Doxygen-cdd729544999bf6ff5ce3efb5a64957058f040f3.tar.bz2 |
Release-1.4.7-20060809
Diffstat (limited to 'src/formula.cpp')
-rw-r--r-- | src/formula.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/formula.cpp b/src/formula.cpp index c906469..07d60d2 100644 --- a/src/formula.cpp +++ b/src/formula.cpp @@ -107,7 +107,8 @@ void FormulaList::generateBitmaps(const char *path) if (latexCmd.isEmpty()) latexCmd="latex"; if (iSystem(latexCmd,"_formulas.tex")!=0) { - err("Problems running latex. Check your installation or look for typos in _formulas.tex!\n"); + err("Problems running latex. Check your installation or look " + "for typos in _formulas.tex and check _formulas.log!\n"); formulaError=TRUE; //return; } @@ -286,7 +287,7 @@ void FormulaList::generateBitmaps(const char *path) } // remove intermediate files produced by latex thisDir.remove("_formulas.dvi"); - thisDir.remove("_formulas.log"); + if (!formulaError) thisDir.remove("_formulas.log"); // keep file in case of errors thisDir.remove("_formulas.aux"); } // remove the latex file itself |