diff options
Diffstat (limited to 'kjs/lookup.cpp')
-rw-r--r-- | kjs/lookup.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kjs/lookup.cpp b/kjs/lookup.cpp index 899238949..30ea46eef 100644 --- a/kjs/lookup.cpp +++ b/kjs/lookup.cpp @@ -75,7 +75,7 @@ const HashEntry* Lookup::findEntry( const struct HashTable *table, return findEntry( table, s.data(), s.size() ); } -int Lookup::find(const struct HashTable *table, +int Lookup::tqfind(const struct HashTable *table, const UChar *c, unsigned int len) { const HashEntry *entry = findEntry( table, c, len ); @@ -84,9 +84,9 @@ int Lookup::find(const struct HashTable *table, return -1; } -int Lookup::find(const struct HashTable *table, const Identifier &s) +int Lookup::tqfind(const struct HashTable *table, const Identifier &s) { - return find(table, s.data(), s.size()); + return tqfind(table, s.data(), s.size()); } unsigned int Lookup::hash(const UChar *c, unsigned int len) |