From c713984bf6a4c9e8c2ea393b304682ce4a56358f Mon Sep 17 00:00:00 2001 From: albert-github Date: Fri, 24 Jul 2015 15:53:14 +0200 Subject: Bug 682373 - Math does not work in LaTeX with custom header and footer. Reset current directory in case of return. --- src/formula.cpp | 2 ++ src/rtfgen.cpp | 1 + 2 files changed, 3 insertions(+) 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 7baaa3c..e10b638 100644 --- a/src/rtfgen.cpp +++ b/src/rtfgen.cpp @@ -2590,6 +2590,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); -- cgit v0.12