Inserts item d into the dictionary under key k.
Definition at line 100 of file qdict.h. References FX::QDictBase< keytype, type >::insert(), and FX::FXString::lower(). Referenced by FX::operator>>(). 00101 { 00102 if(checkcase) 00103 Base::insert(hash(k), k, const_cast<type *>(d)); 00104 else 00105 { 00106 FXString key(k); 00107 key.lower(); 00108 Base::insert(hash(key), key, const_cast<type *>(d)); 00109 } 00110 }
|