summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2005-11-09 21:17:04 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2005-11-09 21:17:04 (GMT)
commitc0b0e4b86db9d2bd699ce2bcd0bca479167a76a6 (patch)
tree1fb5abcbf32aeccbd67ec595f3d19833380001c6 /src/htmlgen.cpp
parent79a5fb85eb38d8a4388c9a281a09549e7bcb8b78 (diff)
downloadDoxygen-c0b0e4b86db9d2bd699ce2bcd0bca479167a76a6.zip
Doxygen-c0b0e4b86db9d2bd699ce2bcd0bca479167a76a6.tar.gz
Doxygen-c0b0e4b86db9d2bd699ce2bcd0bca479167a76a6.tar.bz2
Release-1.4.5-20051109
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 64166e0..9ff634d 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1693,10 +1693,13 @@ static void writeDefaultQuickLinks(QTextStream &t,bool compact,
if (annotatedClasses>0)
{
- startQuickIndexItem(t,"annotated"+Doxygen::htmlFileExtension,
- hli==HLI_Hierarchy || hli==HLI_Classes ||
- hli==HLI_Annotated || hli==HLI_Functions || hli==HLI_ClassVisible,
- compact,first,relPath);
+ static bool alphaIndex=Config_getBool("ALPHABETICAL_INDEX");
+ {
+ startQuickIndexItem(t,QCString(alphaIndex?"classes":"annotated")+Doxygen::htmlFileExtension,
+ hli==HLI_Hierarchy || hli==HLI_Classes ||
+ hli==HLI_Annotated || hli==HLI_Functions || hli==HLI_ClassVisible,
+ compact,first,relPath);
+ }
t << fixSpaces(theTranslator->trClasses());
endQuickIndexItem(t);
}
@@ -1822,10 +1825,6 @@ static void writeDefaultQuickLinks(QTextStream &t,bool compact,
startQuickIndexList(t,compact);
if (annotatedClasses>0)
{
- startQuickIndexItem(t,"annotated"+Doxygen::htmlFileExtension,
- hli==HLI_Annotated,compact,first,relPath);
- t << fixSpaces(theTranslator->trCompoundList());
- endQuickIndexItem(t);
if (Config_getBool("ALPHABETICAL_INDEX"))
{
startQuickIndexItem(t,"classes"+Doxygen::htmlFileExtension,
@@ -1833,6 +1832,10 @@ static void writeDefaultQuickLinks(QTextStream &t,bool compact,
t << fixSpaces(theTranslator->trAlphabeticalList());
endQuickIndexItem(t);
}
+ startQuickIndexItem(t,"annotated"+Doxygen::htmlFileExtension,
+ hli==HLI_Annotated,compact,first,relPath);
+ t << fixSpaces(theTranslator->trCompoundList());
+ endQuickIndexItem(t);
}
if (hierarchyClasses>0)
{