[Doxygen-users] Sorting problem
Brought to you by:
dimitri
|
From: Luigi B. <lui...@ri...> - 2001-08-22 12:07:00
|
Hi all (and especially Dimitri),
With both Doxygen 1.2.9.1 and the latest CVS, the compound list is sorted
taking into account namespaces - even though they are not displayed.
Namely, the following classes:
namespace A {
class C {};
class F {};
class M {};
}
namespace B {
class D {};
class G {};
}
are sorted as C,F,M,D,G which would only make sense if I chose to display
the namespaces, i.e., A::C,A::F,A::M,B::D,B::G
Thanks,
Luigi
|