template<class type>
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 }
|