template<class type>
type* FX::QDict< type >::find ( const FXString k  )  const [inline]

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     }


(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:37:36 2009 for TnFOX by doxygen v1.4.7