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

Removes the most recently placed item in the dictionary under key k without auto-deletion.

Definition at line 136 of file qdict.h.

References FX::FXString::lower(), and FX::QDictBase< keytype, type >::take().

00137     {
00138         if(checkcase)
00139             return Base::take(hash(k), k);
00140         else
00141         {
00142             FXString key(k);
00143             key.lower();
00144             return Base::take(hash(key), key);
00145         }
00146     }


(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