summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-11-06 09:43:51 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-11-06 09:43:51 (GMT)
commit2b722b57f20e044b061423109bfa7168a7a1b913 (patch)
treee33c9343f705b85cfc7d682177911cc814c21497
parent850f0ce7eaf0a689a8e8ef7f3ca05b7a152ab0ad (diff)
downloadDoxygen-2b722b57f20e044b061423109bfa7168a7a1b913.zip
Doxygen-2b722b57f20e044b061423109bfa7168a7a1b913.tar.gz
Doxygen-2b722b57f20e044b061423109bfa7168a7a1b913.tar.bz2
Fixed problem generating per letter namespace member index pages.
-rw-r--r--src/index.cpp1
-rw-r--r--src/sortdict.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/index.cpp b/src/index.cpp
index 41e3318..d52fa77 100644
--- a/src/index.cpp
+++ b/src/index.cpp
@@ -2970,6 +2970,7 @@ static void writeNamespaceMemberIndexFiltered(OutputList &ol,
g_namespaceIndexLetterUsed[hl],
Definition::TypeNamespace);
endFile(ol);
+ first=FALSE;
}
if (multiPageIndex && addToIndex) Doxygen::indexList->decContentsDepth();
ol.popGeneratorState();
diff --git a/src/sortdict.h b/src/sortdict.h
index f4d23f2..4db330f 100644
--- a/src/sortdict.h
+++ b/src/sortdict.h
@@ -590,7 +590,7 @@ class SIntDict
/*! Returns the number of items stored in the dictionary
*/
- int count()
+ int count() const
{
return m_list->count();
}