diff --git a/src/config.xml b/src/config.xml
index 1e15306a5a0..e29d8cae4b7 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -1212,6 +1212,14 @@ Go to the next section or return to the
]]>
+
+
+
+
+
pageTitle(),right->pageTitle()) < 0; });
+ }
+
for (RefListManager::Ptr &rl : RefListManager::instance())
{
rl->generatePage();
diff --git a/src/reflist.cpp b/src/reflist.cpp
index 7d5c06e6efb..8e51cc1db7a 100644
--- a/src/reflist.cpp
+++ b/src/reflist.cpp
@@ -59,15 +59,21 @@ void RefList::generatePage()
std::stable_sort(m_entries.begin(),m_entries.end(),
[](const std::unique_ptr &left,const std::unique_ptr &right)
{ return qstricmp_sort(left->title(),right->title()) < 0; });
- //RefItem *item;
+
QCString doc;
int cnt = 0;
doc += "";
QCString lastGroup;
bool first=true;
+ fprintf(stderr, "*****\n***** [%s][%s]\n*****\n",
+ pageTitle().str().c_str(),
+ sectionTitle().str().c_str());
+
for (const std::unique_ptr &item : m_entries)
{
if (item->name().isEmpty()) continue;
+ fprintf(stderr, "*****\n***** <%s><%s>\n*****\n",
+ item->title().str().c_str(), item->group().str().c_str()); //RefItem *item;
cnt++;
bool startNewGroup = item->group()!=lastGroup;
if (startNewGroup)