diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-07-09 19:45:37 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-07-09 19:45:37 (GMT) |
commit | 56bc9bda61e06b9bd6da5aa58083e93a3b55a465 (patch) | |
tree | 2dbdf12fc6696bf3a9d133e8e23ef223690e919a /src/htmlgen.cpp | |
parent | adb81f79061729efc28e71c1474c35e21283b049 (diff) | |
download | Doxygen-56bc9bda61e06b9bd6da5aa58083e93a3b55a465.zip Doxygen-56bc9bda61e06b9bd6da5aa58083e93a3b55a465.tar.gz Doxygen-56bc9bda61e06b9bd6da5aa58083e93a3b55a465.tar.bz2 |
Release-1.1.5_20000709
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 52abbff..acca70b 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -111,7 +111,8 @@ void HtmlGenerator::startQuickIndexItem(const char *s,const char *l) { t << "<a class=\"qindexRef\" "; t << "doxygen=\"" << s << ":"; - if ((dest=tagDestinationDict[s])) t << *dest << "/"; + if ((dest=tagDestinationDict[s])) t << *dest; + if (strcmp(s,"_cgi")!=0) t << "/"; // small hack to get the cgi binary link right t << "\" "; } else @@ -121,7 +122,8 @@ void HtmlGenerator::startQuickIndexItem(const char *s,const char *l) t << "href=\""; if (s) { - if ((dest=tagDestinationDict[s])) t << *dest << "/"; + if ((dest=tagDestinationDict[s])) t << *dest; + if (strcmp(s,"_cgi")!=0) t << "/"; } t << l << "\">"; } |