diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:06:29 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:06:29 -0600 |
| commit | 2dd6d32bd821b303aa7b25edda76d1ef7c14b2bf (patch) | |
| tree | 9cf20f45e85e8192ae89b22807cf1e82e5012cd9 /src/kvilib/core/kvi_pointerhashtable.h | |
| parent | f91149819be7e7f45e68f22876f3c0062a11d4b9 (diff) | |
| download | kvirc-2dd6d32bd821b303aa7b25edda76d1ef7c14b2bf.tar.gz kvirc-2dd6d32bd821b303aa7b25edda76d1ef7c14b2bf.zip | |
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/kvilib/core/kvi_pointerhashtable.h')
| -rw-r--r-- | src/kvilib/core/kvi_pointerhashtable.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kvilib/core/kvi_pointerhashtable.h b/src/kvilib/core/kvi_pointerhashtable.h index 1c2bcab..99e513f 100644 --- a/src/kvilib/core/kvi_pointerhashtable.h +++ b/src/kvilib/core/kvi_pointerhashtable.h @@ -236,18 +236,18 @@ inline unsigned int kvi_hash_hash(const TQString &szKey,bool bCaseSensitive) if(!p)return 0; if(bCaseSensitive) { - while(p->tqunicode()) + while(p->unicode()) { - uResult += p->tqunicode(); + uResult += p->unicode(); p++; } } else { - while(p->tqunicode()) + while(p->unicode()) { #ifdef COMPILE_USE_QT4 - uResult += p->toLower().tqunicode(); + uResult += p->toLower().unicode(); #else - uResult += p->lower().tqunicode(); + uResult += p->lower().unicode(); #endif p++; } |
