Skip to content

Commit

Permalink
Repair Doxygen generate invalid styleSheetFile and extensionsFile of RTF
Browse files Browse the repository at this point in the history
  • Loading branch information
hbccdf committed Mar 28, 2015
1 parent 15b93a2 commit 0d208bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rtfgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ RTFGenerator::~RTFGenerator()

void RTFGenerator::writeStyleSheetFile(QFile &file)
{
QTextStream t(&file);
FTextStream t(&file);
t << "# Generated by doxygen " << versionString << "\n\n";
t << "# This file describes styles used for generating RTF output.\n";
t << "# All text after a hash (#) is considered a comment and will be ignored.\n";
Expand All @@ -112,7 +112,7 @@ void RTFGenerator::writeStyleSheetFile(QFile &file)

void RTFGenerator::writeExtensionsFile(QFile &file)
{
QTextStream t(&file);
FTextStream t(&file);
t << "# Generated by doxygen " << versionString << "\n\n";
t << "# This file describes extensions used for generating RTF output.\n";
t << "# All text after a hash (#) is considered a comment and will be ignored.\n";
Expand Down

0 comments on commit 0d208bc

Please sign in to comment.