summaryrefslogtreecommitdiffstats
path: root/src/htmlhelp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/htmlhelp.cpp')
-rw-r--r--src/htmlhelp.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp
index 3df3774..2fccdd6 100644
--- a/src/htmlhelp.cpp
+++ b/src/htmlhelp.cpp
@@ -22,15 +22,19 @@
#include <qlist.h>
#include <qdict.h>
#include <qregexp.h>
+#include <qfile.h>
+
#include "qtextcodec.h"
#include "sortdict.h"
-
#include "htmlhelp.h"
#include "config.h"
#include "message.h"
#include "doxygen.h"
#include "language.h"
#include "portable.h"
+#include "groupdef.h"
+#include "memberdef.h"
+#include "filedef.h"
//----------------------------------------------------------------------------
@@ -50,7 +54,7 @@ class IndexFieldSDict : public SDict<IndexField>
public:
IndexFieldSDict() : SDict<IndexField>(17) {}
~IndexFieldSDict() {}
- int compareItems(GCI item1, GCI item2)
+ int compareItems(QCollection::Item item1, QCollection::Item item2)
{
return stricmp(((IndexField *)item1)->name,((IndexField *)item2)->name);
}