diff options
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index e04045d..7c9e136 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -2,7 +2,7 @@ * * * - * Copyright (C) 1997-2002 by Dimitri van Heesch. + * Copyright (C) 1997-2003 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby @@ -274,7 +274,7 @@ static void writeDefaultHeaderPart1(QTextStream &t) { // The command is not empty. Put it to the output. // if the command is empty, no output is needed. - t << sLanguageSupportCommand; + t << sLanguageSupportCommand << endl; } t << "\\usepackage{doxygen}\n"; @@ -425,12 +425,12 @@ void LatexGenerator::writeStyleSheetFile(QFile &f) t << theTranslator->trGeneratedAt( dateToString(TRUE), projectName ); t << " doxygen"; //t << " " << theTranslator->trWrittenBy() << " "; - //t << "Dimitri van Heesch \\copyright~1997-2002"; + //t << "Dimitri van Heesch \\copyright~1997-2003"; writeDefaultStyleSheetPart2(t); t << theTranslator->trGeneratedAt( dateToString(TRUE), projectName ); t << " doxygen"; //t << " << theTranslator->trWrittenBy() << " "; - //t << "Dimitri van Heesch \\copyright~1997-2002"; + //t << "Dimitri van Heesch \\copyright~1997-2003"; writeDefaultStyleSheetPart3(t); } @@ -837,14 +837,14 @@ void LatexGenerator::writeStyleInfo(int part) break; case 2: { - //t << " Dimitri van Heesch \\copyright~1997-2002"; + //t << " Dimitri van Heesch \\copyright~1997-2003"; t << "}]{}\n"; writeDefaultStyleSheetPart2(t); } break; case 4: { - //t << " Dimitri van Heesch \\copyright~1997-2002"; + //t << " Dimitri van Heesch \\copyright~1997-2003"; writeDefaultStyleSheetPart3(t); endPlainFile(); } |