diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-03 17:43:17 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-03 17:43:17 (GMT) |
commit | e3baf8c5ec430e5f09f00384ebdfa35242fd3316 (patch) | |
tree | d1720b58a91abcbfb70196c277ad3b7a11da8263 /src/htmlgen.cpp | |
parent | 1b2fd16cd8ed1830a7743a55dc1b9ec3ec59ad98 (diff) | |
download | Doxygen-e3baf8c5ec430e5f09f00384ebdfa35242fd3316.zip Doxygen-e3baf8c5ec430e5f09f00384ebdfa35242fd3316.tar.gz Doxygen-e3baf8c5ec430e5f09f00384ebdfa35242fd3316.tar.bz2 |
Release-1.1.5
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 977e011..52abbff 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -80,7 +80,8 @@ void HtmlGenerator::startFile(const char *name,const char *title,bool external) "<title>" << title << "</title>\n"; t << "<link "; if (external) - t << "doxygen=\"_doc:\" href=\"/"; + t << "doxygen=\"_doc:" << Config::docURL + << "\" href=\"" << Config::docURL << "/"; else t << "href=\""; if (Config::htmlStyleSheet.isEmpty()) @@ -147,7 +148,8 @@ void HtmlGenerator::writeFooter(int part,bool external) t << endl << "<img "; if (external) { - t << "doxygen=\"_doc:\" src=\"/"; + t << "doxygen=\"_doc:" << Config::docURL + << "\" src=\"" << Config::docURL << "/"; } else { |