summaryrefslogtreecommitdiffstats
path: root/src/namespacedef.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-11-17 21:22:48 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-11-17 21:22:48 (GMT)
commitb9e362903872f0313e6e26154aacc6c185a9b31d (patch)
tree0c7c3ab3d6f38e212b2cd4a4628e3c9d32d49db3 /src/namespacedef.cpp
parent169834ef89a1df22c8f72a01b6a9413bbb57edb5 (diff)
downloadDoxygen-b9e362903872f0313e6e26154aacc6c185a9b31d.zip
Doxygen-b9e362903872f0313e6e26154aacc6c185a9b31d.tar.gz
Doxygen-b9e362903872f0313e6e26154aacc6c185a9b31d.tar.bz2
Release-1.7.5.1-20111117
Diffstat (limited to 'src/namespacedef.cpp')
-rw-r--r--src/namespacedef.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp
index 39904f0..7a51f14 100644
--- a/src/namespacedef.cpp
+++ b/src/namespacedef.cpp
@@ -564,12 +564,7 @@ void NamespaceDef::writeDocumentation(OutputList &ol)
ol.endContents();
- if (generateTreeView)
- {
- writeNavigationPath(ol);
- }
-
- endFile(ol,TRUE);
+ endFileWithNavPath(this,ol);
if (generateTagFile)
{
@@ -813,8 +808,13 @@ bool NamespaceSDict::declVisible() const
void NamespaceSDict::writeDeclaration(OutputList &ol,const char *title,bool localName)
{
+
+
if (count()==0) return; // no namespaces in the list
+ if (Config_getBool("OPTIMIZE_OUTPUT_VHDL")) return;
+
+
SDict<NamespaceDef>::Iterator ni(*this);
NamespaceDef *nd;
bool found=FALSE;