summaryrefslogtreecommitdiffstats
path: root/src/definition.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2011-03-28 14:10:48 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2011-03-28 14:10:48 (GMT)
commit145b564516f82be1bb4cc5a82277e7c9d10ca5ca (patch)
tree586c86db1de8495083071cb415bddb31c7e9cacb /src/definition.cpp
parent62d4d65ad07413ca2f6d04939e2273dc3e0db957 (diff)
downloadDoxygen-145b564516f82be1bb4cc5a82277e7c9d10ca5ca.zip
Doxygen-145b564516f82be1bb4cc5a82277e7c9d10ca5ca.tar.gz
Doxygen-145b564516f82be1bb4cc5a82277e7c9d10ca5ca.tar.bz2
Release-1.7.4
Diffstat (limited to 'src/definition.cpp')
-rw-r--r--src/definition.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/definition.cpp b/src/definition.cpp
index 64a9f33..ec00885 100644
--- a/src/definition.cpp
+++ b/src/definition.cpp
@@ -18,7 +18,7 @@
#include "qtbc.h"
#include <ctype.h>
#include <qregexp.h>
-#include <md5.h>
+#include "md5.h"
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
@@ -1356,14 +1356,14 @@ void Definition::writeNavigationPath(OutputList &ol) const
ol.writeString(" <div id=\"nav-path\" class=\"navpath\">\n");
ol.writeString(" <ul>\n");
writePathFragment(ol);
- if (!hasCustomFooter)
+ if (!hasCustomFooter && generateTreeView) // write the doxygen logo as part of the navigation bar
+ {
+ ol.writeString(" <li class=\"footer\">");
+ ol.writeLogo();
+ ol.writeString("</li>\n");
+ }
+ if (!hasCustomFooter || !generateTreeView)
{
- if (generateTreeView) // write the doxygen logo as part of the navigation bar
- {
- ol.writeString(" <li class=\"footer\">");
- ol.writeLogo();
- ol.writeString("</li>\n");
- }
ol.writeString(" </ul>\n");
ol.writeString(" </div>\n");
}