diff options
Diffstat (limited to 'src/formula.cpp')
-rw-r--r-- | src/formula.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/formula.cpp b/src/formula.cpp index 065f036..2eeba75 100644 --- a/src/formula.cpp +++ b/src/formula.cpp @@ -70,14 +70,14 @@ void FormulaList::generateBitmaps(const char *path) if (f.open(IO_WriteOnly)) { QTextStream t(&f); - if (Config::latexBatchModeFlag) t << "\\batchmode" << endl; + if (Config::instance()->getBool("LATEX_BATCHMODE")) t << "\\batchmode" << endl; t << "\\documentclass{article}" << endl; t << "\\usepackage{epsfig}" << endl; // for those who want to include images - const char *s=Config::extraPackageList.first(); + const char *s=Config::instance()->getList("EXTRA_PACKAGES").first(); while (s) { t << "\\usepackage{" << s << "}\n"; - s=Config::extraPackageList.next(); + s=Config::instance()->getList("EXTRA_PACKAGES").next(); } t << "\\pagestyle{empty}" << endl; t << "\\begin{document}" << endl; |