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

Deletes the most recently placed item in the dictionary under key k.

Definition at line 124 of file qdict.h.

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

00125     {
00126         if(checkcase)
00127             return Base::remove(hash(k), k);
00128         else
00129         {
00130             FXString key(k);
00131             key.lower();
00132             return Base::remove(hash(key), key);
00133         }
00134     }


(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