summaryrefslogtreecommitdiffstats
path: root/kdecore/ksycocadict.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdecore/ksycocadict.h')
-rw-r--r--kdecore/ksycocadict.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdecore/ksycocadict.h b/kdecore/ksycocadict.h
index b83ed42db..94a2bc646 100644
--- a/kdecore/ksycocadict.h
+++ b/kdecore/ksycocadict.h
@@ -92,7 +92,7 @@ public:
* Save the dictionary to the stream
* A reasonable fast hash algorithm will be created.
*
- * Typically this will tqfind 90% of the entries directly.
+ * Typically this will find 90% of the entries directly.
* Average hash table size: nrOfItems * 20 bytes.
* Average duplicate list size: nrOfItms * avgKeyLength / 5.
*
@@ -111,13 +111,13 @@ public:
void save(TQDataStream &str);
protected:
- TQ_UINT32 hashKey( const TQString &);
+ Q_UINT32 hashKey( const TQString &);
private:
KSycocaDictStringList *d;
TQDataStream *mStr;
- TQ_INT32 mOffset;
- TQ_UINT32 mHashTableSize;
- TQValueList<TQ_INT32> mHashList;
+ Q_INT32 mOffset;
+ Q_UINT32 mHashTableSize;
+ TQValueList<Q_INT32> mHashList;
};
#endif