diff options
author | Timothy Pearson <[email protected]> | 2011-08-09 22:25:47 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-08-09 22:25:47 -0500 |
commit | eaa7ee2e0bbca40ba3173c4304f81957e8964291 (patch) | |
tree | 4f793aa48a5080aedc94ce6e519c3b86708f2b88 /tqtinterface/qt4/src/tools/tqptrvector.h | |
parent | 79a9d7a46a20d4a0923bc06fc471fdc2176ef865 (diff) | |
download | experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.tar.gz experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
Diffstat (limited to 'tqtinterface/qt4/src/tools/tqptrvector.h')
-rw-r--r-- | tqtinterface/qt4/src/tools/tqptrvector.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tqtinterface/qt4/src/tools/tqptrvector.h b/tqtinterface/qt4/src/tools/tqptrvector.h index 97934d4..14164ca 100644 --- a/tqtinterface/qt4/src/tools/tqptrvector.h +++ b/tqtinterface/qt4/src/tools/tqptrvector.h @@ -75,14 +75,14 @@ public: { return TQGVector::fill((Item)d,size);} void sort() { TQGVector::sort(); } int bsearch( const type *d ) const{ return TQGVector::bsearch((Item)d); } - int tqfindRef( const type *d, uint i=0 ) const - { return TQGVector::tqfindRef((Item)d,i);} - int tqfind( const type *d, uint i= 0 ) const - { return TQGVector::tqfind((Item)d,i); } - uint tqcontainsRef( const type *d ) const - { return TQGVector::tqcontainsRef((Item)d); } - uint tqcontains( const type *d ) const - { return TQGVector::tqcontains((Item)d); } + int findRef( const type *d, uint i=0 ) const + { return TQGVector::findRef((Item)d,i);} + int find( const type *d, uint i= 0 ) const + { return TQGVector::find((Item)d,i); } + uint containsRef( const type *d ) const + { return TQGVector::containsRef((Item)d); } + uint contains( const type *d ) const + { return TQGVector::contains((Item)d); } type *operator[]( int i ) const { return (type *)TQGVector::at(i); } type *at( uint i ) const { return (type *)TQGVector::at(i); } type *tqat( uint i ) const { return (type *)TQGVector::at(i); } |