summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-07-03 17:43:17 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-07-03 17:43:17 (GMT)
commitadb81f79061729efc28e71c1474c35e21283b049 (patch)
treed1720b58a91abcbfb70196c277ad3b7a11da8263 /src/htmlgen.cpp
parent9b28530018c59ce65519f49e8095ecd58b082c87 (diff)
downloadDoxygen-adb81f79061729efc28e71c1474c35e21283b049.zip
Doxygen-adb81f79061729efc28e71c1474c35e21283b049.tar.gz
Doxygen-adb81f79061729efc28e71c1474c35e21283b049.tar.bz2
Release-1.1.5
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp6
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
{