summaryrefslogtreecommitdiffstats
path: root/src/example.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-11-18 21:43:28 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-11-18 21:43:28 (GMT)
commit1a68946cfa3e3ee749a683fdabc93e6b5311adeb (patch)
tree94365b932426de715b3a479094b7056e0c4f878b /src/example.h
parent9c9313827b29876de43ad5305fd7ac162013359c (diff)
downloadDoxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.zip
Doxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.tar.gz
Doxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.tar.bz2
Release-1.8.2-20121118
Diffstat (limited to 'src/example.h')
-rw-r--r--src/example.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/example.h b/src/example.h
index 2ee1429..4bcaeb9 100644
--- a/src/example.h
+++ b/src/example.h
@@ -18,8 +18,8 @@
#ifndef EXAMPLE_H
#define EXAMPLE_H
-#include "qtbc.h"
-#include <qdict.h>
+#include <qcstring.h>
+#include "sortdict.h"
class ClassDef;
class MemberName;
@@ -38,7 +38,7 @@ class ExampleSDict : public SDict<Example>
public:
ExampleSDict(int size=17) : SDict<Example>(size) {}
~ExampleSDict() {}
- int compareItems(GCI item1,GCI item2)
+ int compareItems(QCollection::Item item1,QCollection::Item item2)
{
return stricmp(((Example *)item1)->name,((Example *)item2)->name);
}