Finds the most recently placed item in the dictionary under key k.
Definition at line 148 of file qdict.h. References FX::QDictBase< keytype, type >::find(), and FX::FXString::lower(). Referenced by FX::QDict< type >::operator[](). 00149 { 00150 if(checkcase) 00151 return Base::find(hash(k), k); 00152 else 00153 { 00154 FXString key(k); 00155 key.lower(); 00156 return Base::find(hash(key), key); 00157 } 00158 }
|