diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-12-15 18:58:39 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-12-15 18:58:39 (GMT) |
commit | 104be290eb99ab3277906a57fb4673dfa1850bc6 (patch) | |
tree | 1cb1b44f09351116c7ebe409fef462341fac2ff3 /src/latexgen.cpp | |
parent | 4d3dea2f08f3bed73db5c3b8dc3772e46decb479 (diff) | |
download | Doxygen-104be290eb99ab3277906a57fb4673dfa1850bc6.zip Doxygen-104be290eb99ab3277906a57fb4673dfa1850bc6.tar.gz Doxygen-104be290eb99ab3277906a57fb4673dfa1850bc6.tar.bz2 |
Release-1.3.5-20031215
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index b80fea0..7b68e71 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -221,7 +221,7 @@ void LatexGenerator::init() t << endl << "clean:" << endl - << "\trm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.pdf" << endl; + << "\trm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out refman.pdf" << endl; } static void writeDefaultHeaderPart1(QTextStream &t) @@ -1235,7 +1235,7 @@ void LatexGenerator::codify(const char *str) MultiByte = FALSE; continue; } - if ( (uchar)c>=0x80 || (uchar)c<=0xff) // char in range [0x80..0xff] + if ((uchar)c>=0x80) // char in range [0x80..0xff] { t << (char)c; MultiByte = TRUE; |