diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2010-12-24 16:12:24 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2010-12-24 16:12:24 (GMT) |
commit | 48f4fd9c2d9ba8b374e3c052f888df9bc220df92 (patch) | |
tree | 2e3f5d0757e53645fc902d0a87aa44dfd31d2d4d /src/eclipsehelp.cpp | |
parent | dd7602fdd31d8f3e0f88be553da084a1e3fdec45 (diff) | |
download | Doxygen-48f4fd9c2d9ba8b374e3c052f888df9bc220df92.zip Doxygen-48f4fd9c2d9ba8b374e3c052f888df9bc220df92.tar.gz Doxygen-48f4fd9c2d9ba8b374e3c052f888df9bc220df92.tar.bz2 |
Release-1.7.2-20101224
Diffstat (limited to 'src/eclipsehelp.cpp')
-rw-r--r-- | src/eclipsehelp.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/eclipsehelp.cpp b/src/eclipsehelp.cpp index 8669530..fe7d4f1 100644 --- a/src/eclipsehelp.cpp +++ b/src/eclipsehelp.cpp @@ -84,7 +84,9 @@ void EclipseHelp::initialize() { title = "Doxygen generated documentation"; } - m_tocstream << "<toc label=\"" << convertToXML(title) << "\">" << endl; + m_tocstream << "<toc label=\"" << convertToXML(title) + << "\" topic=\"" << convertToXML(m_pathprefix) + << "index" << Doxygen::htmlFileExtension << "\">" << endl; ++ m_depth; } @@ -155,7 +157,7 @@ void EclipseHelp::decContentsDepth() * @param anchor Name of an anchor of the item. */ void EclipseHelp::addContentsItem( - bool isDir, + bool /* isDir */, const char *name, const char * /* ref */, const char *file, @@ -165,8 +167,8 @@ void EclipseHelp::addContentsItem( closedTag(); indent(); m_tocstream << "<topic label=\"" << convertToXML(name) << "\""; - if (!isDir && file) - { // -- Eclipse help cannot handle directories + if (file) + { m_tocstream << " href=\"" << convertToXML(m_pathprefix) << file << Doxygen::htmlFileExtension; if (anchor) |