diff options
Diffstat (limited to 'tqtinterface/qt4/src/tools/tqdict.h')
-rw-r--r-- | tqtinterface/qt4/src/tools/tqdict.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tqtinterface/qt4/src/tools/tqdict.h b/tqtinterface/qt4/src/tools/tqdict.h index 1dc8a48..b9fab7f 100644 --- a/tqtinterface/qt4/src/tools/tqdict.h +++ b/tqtinterface/qt4/src/tools/tqdict.h @@ -66,11 +66,11 @@ public: void insert( const TQString &k, const type *d ) { TQGDict::look_string(k,(Item)d,1); } - void tqreplace( const TQString &k, const type *d ) + void replace( const TQString &k, const type *d ) { TQGDict::look_string(k,(Item)d,2); } bool remove( const TQString &k ) { return TQGDict::remove_string(k); } type *take( const TQString &k ) { return (type *)TQGDict::take_string(k); } - type *tqfind( const TQString &k ) const + type *find( const TQString &k ) const { return (type *)((TQGDict*)this)->TQGDict::look_string(k,0,0); } type *operator[]( const TQString &k ) const { return (type *)((TQGDict*)this)->TQGDict::look_string(k,0,0); } |