summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index fed312d..0554b19 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -159,7 +159,7 @@ void LatexGenerator::init()
QTextStream t(&file);
if (!Config_getBool("USE_PDFLATEX")) // use plain old latex
{
- t << "all: refman.dvi" << endl
+ t << "all clean: refman.dvi" << endl
<< endl
<< "ps: refman.ps" << endl
<< endl
@@ -208,7 +208,7 @@ void LatexGenerator::init()
}
else // use pdflatex for higher quality output
{
- t << "all: refman.pdf" << endl << endl;
+ t << "all clean: refman.pdf" << endl << endl;
t << "refman.pdf: refman.tex" << endl;
t << "\tpdflatex refman.tex" << endl;
t << "\tmakeindex refman.idx" << endl;
@@ -1391,6 +1391,7 @@ void LatexGenerator::endMemberDescription()
else
{
t << "}\\\\";
+ m_indent=0;
}
}