summaryrefslogtreecommitdiffstats
path: root/src/htmlhelp.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2012-06-10 09:28:22 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2012-06-10 09:28:22 (GMT)
commit0ce3aea886f4e95da56d164b3944fd54d3d68f89 (patch)
tree6709ddc7b1764dc3b20bbac7eb36c05edcc91e03 /src/htmlhelp.cpp
parent1983c30b71bf92b3fa6bfedbb98451c3b7f74498 (diff)
downloadDoxygen-0ce3aea886f4e95da56d164b3944fd54d3d68f89.zip
Doxygen-0ce3aea886f4e95da56d164b3944fd54d3d68f89.tar.gz
Doxygen-0ce3aea886f4e95da56d164b3944fd54d3d68f89.tar.bz2
Release-1.8.1.1
Diffstat (limited to 'src/htmlhelp.cpp')
-rw-r--r--src/htmlhelp.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp
index 2860296..86d4e42 100644
--- a/src/htmlhelp.cpp
+++ b/src/htmlhelp.cpp
@@ -34,6 +34,7 @@
//----------------------------------------------------------------------------
+/** Class representing a field in the HTML help index. */
struct IndexField
{
QCString name;
@@ -43,6 +44,7 @@ struct IndexField
bool reversed;
};
+/** Sorted dictionary of IndexField objects. */
class IndexFieldSDict : public SDict<IndexField>
{
public:
@@ -54,8 +56,8 @@ class IndexFieldSDict : public SDict<IndexField>
}
};
-/*! A helper class for HtmlHelp that manages a two level index in
- * alphabetical order
+/** A helper class for HtmlHelp that manages a two level index in
+ * alphabetical order.
*/
class HtmlHelpIndex
{