template<class type>
void FX::QDict< type >::replace ( const FXString k,
const type *  d 
) [inline]

Replaces item d in the dictionary under key k.

Definition at line 112 of file qdict.h.

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

00113     {
00114         if(checkcase)
00115             Base::replace(hash(k), k, const_cast<type *>(d));
00116         else
00117         {
00118             FXString key(k);
00119             key.lower();
00120             Base::replace(hash(key), key, const_cast<type *>(d));
00121         }
00122     }


(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