summaryrefslogtreecommitdiffstats
path: root/src/instdox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/instdox.cpp')
-rw-r--r--src/instdox.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/instdox.cpp b/src/instdox.cpp
index ad22c89..4faa2e6 100644
--- a/src/instdox.cpp
+++ b/src/instdox.cpp
@@ -16,7 +16,8 @@
#include <sys/types.h>
#include <sys/stat.h>
-#include <qstring.h>
+
+#include "qtbc.h"
#include <qfile.h>
#include <qfileinf.h>
#include <qtstream.h>
@@ -28,19 +29,19 @@
void writeInstallScript()
{
- QString fileName=htmlOutputDir+"/installdox";
+ QCString fileName=Config::htmlOutputDir+"/installdox";
QFile f(fileName);
if (f.open(IO_WriteOnly))
{
QTextStream t(&f);
- t << "#!" << perlPath << endl << endl << "%subst = ( ";
+ t << "#!" << Config::perlPath << endl << endl << "%subst = ( ";
- char *s=tagFileList.first();
+ char *s=Config::tagFileList.first();
while (s)
{
QFileInfo fi(s);
t << "\"" << fi.fileName() << "\", \"\"";
- s=tagFileList.next();
+ s=Config::tagFileList.next();
if (s) t << ", ";
}