diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2001-04-01 17:28:27 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2001-04-01 17:28:27 (GMT) |
commit | c47269c4f1fb1387d6876075f3b2e935354d5b76 (patch) | |
tree | 9ab56725fa008f006370f074ed17023811bbc55f /src/formula.cpp | |
parent | b11bb229001fbb79399e3c21860ae6fb4608e77a (diff) | |
download | Doxygen-c47269c4f1fb1387d6876075f3b2e935354d5b76.zip Doxygen-c47269c4f1fb1387d6876075f3b2e935354d5b76.tar.gz Doxygen-c47269c4f1fb1387d6876075f3b2e935354d5b76.tar.bz2 |
Release-1.2.6-20010401
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; |