aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/help
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2007-01-19 02:11:09 +0000
committerGravatar Szymon Tomasz Stefanek2007-01-19 02:11:09 +0000
commitecd49ed1192c79a3b55cdc4130bec1d4182f71b4 (patch)
tree2ffd5b617136b4296e25eb3c66a5cd27180f21c8 /src/modules/help
parent*AUTOMATICALLY* updated KVI_SOURCES_DATE variable (diff)
downloadKVIrc-ecd49ed1192c79a3b55cdc4130bec1d4182f71b4.tar.gz
KVIrc-ecd49ed1192c79a3b55cdc4130bec1d4182f71b4.tar.bz2
KVIrc-ecd49ed1192c79a3b55cdc4130bec1d4182f71b4.zip
More Qt 4.x port
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@195 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/help')
-rwxr-xr-xsrc/modules/help/index.cpp6
-rwxr-xr-xsrc/modules/help/index.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/help/index.cpp b/src/modules/help/index.cpp
index 7b41463a1..7db099ab6 100755
--- a/src/modules/help/index.cpp
+++ b/src/modules/help/index.cpp
@@ -60,7 +60,7 @@
#include <qstringlist.h>
-#include <qdict.h>
+#include "kvi_dict.h"
#include <qapplication.h>
@@ -337,7 +337,7 @@ void Index::writeDict()
{
- QDictIterator<Entry> it( dict );
+ KviDictIterator<Entry> it( dict );
QFile f( dictFile );
@@ -600,7 +600,7 @@ QStringList Index::getWildcardTerms( const QString &term )
- QDictIterator<Entry> it( dict );
+ KviDictIterator<Entry> it( dict );
for( ; it.current(); ++it ) {
diff --git a/src/modules/help/index.h b/src/modules/help/index.h
index 00602f1a6..10b65e532 100755
--- a/src/modules/help/index.h
+++ b/src/modules/help/index.h
@@ -30,7 +30,7 @@
#define INDEX_H
#include <qstringlist.h>
-#include <qdict.h>
+#include "kvi_dict.h"
#include <qdatastream.h>
#include <qobject.h>
@@ -97,8 +97,8 @@ private:
void buildMiniDict( const QString& );
QStringList docList;
QStringList titleList;
- QDict<Entry> dict;
- QDict<PosEntry> miniDict;
+ KviDict<Entry> dict;
+ KviDict<PosEntry> miniDict;
uint wordNum;
QString docPath;
QString dictFile, docListFile;