diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-04-08 19:19:32 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-04-08 19:19:32 (GMT) |
commit | c08484819f37862c753a193092326cb16e1a89fa (patch) | |
tree | 120d3069adfaa3da505045185569c8c67554d055 /src/instdox.cpp | |
parent | 790edce05edc348b237258995816da1708d67a73 (diff) | |
download | Doxygen-c08484819f37862c753a193092326cb16e1a89fa.zip Doxygen-c08484819f37862c753a193092326cb16e1a89fa.tar.gz Doxygen-c08484819f37862c753a193092326cb16e1a89fa.tar.bz2 |
Doxygen-1.2.6-20010408
Diffstat (limited to 'src/instdox.cpp')
-rw-r--r-- | src/instdox.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/instdox.cpp b/src/instdox.cpp index 8d621ca..56ab915 100644 --- a/src/instdox.cpp +++ b/src/instdox.cpp @@ -30,14 +30,14 @@ void writeInstallScript() { - QCString fileName=Config::instance()->getString("HTML_OUTPUT")+"/installdox"; + QCString fileName=Config_getString("HTML_OUTPUT")+"/installdox"; QFile f(fileName); if (f.open(IO_WriteOnly)) { QTextStream t(&f); - t << "#!" << Config::instance()->getString("PERL_PATH") << endl << endl << "%subst = ( "; + t << "#!" << Config_getString("PERL_PATH") << endl << endl << "%subst = ( "; - char *s=Config::instance()->getList("TAGFILES").first(); + char *s=Config_getList("TAGFILES").first(); while (s) { QCString tagLine=s; @@ -53,7 +53,7 @@ void writeInstallScript() } QFileInfo fi(fileName); t << "\"" << fi.fileName() << "\", \"\""; - s=Config::instance()->getList("TAGFILES").next(); + s=Config_getList("TAGFILES").next(); if (s) t << ", "; } @@ -108,7 +108,7 @@ void writeInstallScript() t << " print STDERR \"No substitute given for tag file `$sub'\\n\";\n"; t << " &usage();\n"; t << " }\n"; - t << " elsif ( ! $quiet && $sub!=\"_doc\" && $sub!=\"_cgi\" )\n"; + t << " elsif ( ! $quiet && $sub ne \"_doc\" && $sub ne \"_cgi\" )\n"; t << " {\n"; t << " print \"Substituting $subst{$sub} for each occurence of tag file $sub\\n\"; \n"; t << " }\n"; |