diff options
Diffstat (limited to 'kmail/kmdict.cpp')
-rw-r--r-- | kmail/kmdict.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/kmdict.cpp b/kmail/kmdict.cpp index 0ba60ed55..0ad9367be 100644 --- a/kmail/kmdict.cpp +++ b/kmail/kmdict.cpp @@ -54,7 +54,7 @@ void KMDict::clear() //----------------------------------------------------------------------------- -void KMDict::tqreplace( long key, KMDictItem *item ) +void KMDict::replace( long key, KMDictItem *item ) { insert( key, item ); removeFollowing( item, key ); // remove other items with same key @@ -104,7 +104,7 @@ void KMDict::removeFollowing(KMDictItem *item, long key) //----------------------------------------------------------------------------- -KMDictItem *KMDict::tqfind(long key) +KMDictItem *KMDict::find(long key) { int idx = (unsigned long)key % mSize; KMDictItem *item = mVecs[idx]; |