diff options
Diffstat (limited to 'src/definition.cpp')
-rw-r--r-- | src/definition.cpp | 16 |
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"); } |