summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-06-05 10:10:59 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-06-05 10:10:59 (GMT)
commit4c7ed9016d24482cb2b46363537c95954a809012 (patch)
tree5451606ff00356bcbf3e25f138b7f82aad614d97 /src
parent2899a2d6eefed0cef26647e1c89cf08e02b800d5 (diff)
downloadDoxygen-4c7ed9016d24482cb2b46363537c95954a809012.zip
Doxygen-4c7ed9016d24482cb2b46363537c95954a809012.tar.gz
Doxygen-4c7ed9016d24482cb2b46363537c95954a809012.tar.bz2
Improvement LaTeX output (regression)
Regression on pull request #698. We shouldn't switch to pdflatex for formula generation (follow up procedure: dvips and gs / splitting into images does not work). In the travis tests this was shown as well but not flagged as an error.
Diffstat (limited to 'src')
-rw-r--r--src/formula.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/formula.cpp b/src/formula.cpp
index 9e48b2d..46e2075 100644
--- a/src/formula.cpp
+++ b/src/formula.cpp
@@ -25,7 +25,6 @@
#include "util.h"
#include "message.h"
#include "config.h"
-#include "language.h"
#include "portable.h"
#include "index.h"
#include "doxygen.h"
@@ -97,7 +96,7 @@ void FormulaList::generateBitmaps(const char *path)
{
//printf("Running latex...\n");
//system("latex _formulas.tex </dev/null >/dev/null");
- QCString latexCmd = theTranslator->latexCommandName();
+ QCString latexCmd = "latex";
portable_sysTimerStart();
if (portable_system(latexCmd,"_formulas.tex")!=0)
{