diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2001-04-08 19:19:32 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2001-04-08 19:19:32 (GMT) |
commit | 8f195c2d389edeeaf0f76de36c5b5db788b6e312 (patch) | |
tree | 120d3069adfaa3da505045185569c8c67554d055 /src/instdox.cpp | |
parent | c47269c4f1fb1387d6876075f3b2e935354d5b76 (diff) | |
download | Doxygen-8f195c2d389edeeaf0f76de36c5b5db788b6e312.zip Doxygen-8f195c2d389edeeaf0f76de36c5b5db788b6e312.tar.gz Doxygen-8f195c2d389edeeaf0f76de36c5b5db788b6e312.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"; |