summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-07-26 10:02:41 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-07-26 10:02:41 (GMT)
commit8b128b291d9bad7c73e52c78be9a77f8a867825b (patch)
treea9690181d7fff50697e2edb6790422aeee4a9be9
parent5fb6d966b3f410ddd8b9f8fac3ad8edbe6822cef (diff)
parentc713984bf6a4c9e8c2ea393b304682ce4a56358f (diff)
downloadDoxygen-8b128b291d9bad7c73e52c78be9a77f8a867825b.zip
Doxygen-8b128b291d9bad7c73e52c78be9a77f8a867825b.tar.gz
Doxygen-8b128b291d9bad7c73e52c78be9a77f8a867825b.tar.bz2
Merge pull request #369 from albert-github/feature/bug_682373
Bug 682373 - Math does not work in LaTeX with custom header and footer.
-rw-r--r--src/formula.cpp2
-rw-r--r--src/rtfgen.cpp1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/formula.cpp b/src/formula.cpp
index ad37782..182ddaa 100644
--- a/src/formula.cpp
+++ b/src/formula.cpp
@@ -132,6 +132,7 @@ void FormulaList::generateBitmaps(const char *path)
{
err("Problems running dvips. Check your installation!\n");
portable_sysTimerStop();
+ QDir::setCurrent(oldDir);
return;
}
portable_sysTimerStop();
@@ -192,6 +193,7 @@ void FormulaList::generateBitmaps(const char *path)
{
err("Problem running ghostscript %s %s. Check your installation!\n",portable_ghostScriptCommand(),gsArgs);
portable_sysTimerStop();
+ QDir::setCurrent(oldDir);
return;
}
portable_sysTimerStop();
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp
index 1a53e63..811efd8 100644
--- a/src/rtfgen.cpp
+++ b/src/rtfgen.cpp
@@ -2606,6 +2606,7 @@ bool RTFGenerator::preProcessFileInplace(const char *path,const char *name)
if (!outf.open(IO_WriteOnly))
{
err("Failed to open %s for writing!\n",combinedName.data());
+ QDir::setCurrent(oldDir);
return FALSE;
}
FTextStream outt(&outf);