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 }
|