File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -11447,6 +11447,11 @@ void parseInput()
11447
11447
qstricmp (c1->className (), c2->className ())<0 ;
11448
11448
};
11449
11449
11450
+ auto namespaceComp = [](const NamespaceLinkedMap::Ptr &n1,const NamespaceLinkedMap::Ptr &n2)
11451
+ {
11452
+ return qstricmp (n1->name (),n2->name ())<0 ;
11453
+ };
11454
+
11450
11455
g_s.begin (" Sorting lists...\n " );
11451
11456
std::sort (Doxygen::memberNameLinkedMap->begin (),
11452
11457
Doxygen::memberNameLinkedMap->end (),
@@ -11460,6 +11465,9 @@ void parseInput()
11460
11465
std::sort (Doxygen::classLinkedMap->begin (),
11461
11466
Doxygen::classLinkedMap->end (),
11462
11467
classComp);
11468
+ std::sort (Doxygen::namespaceLinkedMap->begin (),
11469
+ Doxygen::namespaceLinkedMap->end (),
11470
+ namespaceComp);
11463
11471
g_s.end ();
11464
11472
11465
11473
QDir thisDir;
You can’t perform that action at this time.
0 commit comments