diff options
Diffstat (limited to 'src/instdox.cpp')
-rw-r--r-- | src/instdox.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/instdox.cpp b/src/instdox.cpp index a446a9a..692df53 100644 --- a/src/instdox.cpp +++ b/src/instdox.cpp @@ -21,7 +21,6 @@ #include "qtbc.h" #include <qfile.h> #include <qfileinfo.h> -#include <qtextstream.h> #include "instdox.h" #include "doxygen.h" @@ -34,7 +33,7 @@ void writeInstallScript() QFile f(fileName); if (f.open(IO_WriteOnly)) { - QTextStream t(&f); + FTextStream t(&f); t << "#!" << Config_getString("PERL_PATH") << endl << endl << "%subst = ( "; char *s=Config_getList("TAGFILES").first(); |