summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/kernel/tqrect.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
commiteaa7ee2e0bbca40ba3173c4304f81957e8964291 (patch)
tree4f793aa48a5080aedc94ce6e519c3b86708f2b88 /tqtinterface/qt4/src/kernel/tqrect.h
parent79a9d7a46a20d4a0923bc06fc471fdc2176ef865 (diff)
downloadexperimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.tar.gz
experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains
Diffstat (limited to 'tqtinterface/qt4/src/kernel/tqrect.h')
-rw-r--r--tqtinterface/qt4/src/kernel/tqrect.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/tqtinterface/qt4/src/kernel/tqrect.h b/tqtinterface/qt4/src/kernel/tqrect.h
index e208978..8d5dc2b 100644
--- a/tqtinterface/qt4/src/kernel/tqrect.h
+++ b/tqtinterface/qt4/src/kernel/tqrect.h
@@ -66,10 +66,10 @@ public:
void moveBy( int dx, int dy ) { translate(dx, dy); }
- inline bool tqcontains( const TQPoint &p, bool proper=FALSE ) const { return contains(p, proper); }
- inline bool tqcontains( int x, int y ) const { return contains(x, y); }
- inline bool tqcontains( int x, int y, bool proper ) const { return contains(x, y, proper); }
- inline bool tqcontains( const TQRect &r, bool proper=FALSE ) const { return contains(r, proper); }
+ inline bool contains( const TQPoint &p, bool proper=FALSE ) const { return contains(p, proper); }
+ inline bool contains( int x, int y ) const { return contains(x, y); }
+ inline bool contains( int x, int y, bool proper ) const { return contains(x, y, proper); }
+ inline bool contains( const TQRect &r, bool proper=FALSE ) const { return contains(r, proper); }
inline void addCoords( int x1, int y1, int x2, int y2 ) { adjust(x1, y1, x2, y2); }
@@ -172,10 +172,10 @@ public:
TQRect& operator|=(const TQRect &r);
TQRect& operator&=(const TQRect &r);
- bool tqcontains( const TQPoint &p, bool proper=FALSE ) const;
- bool tqcontains( int x, int y ) const; // inline methods, _don't_ merge these
- bool tqcontains( int x, int y, bool proper ) const;
- bool tqcontains( const TQRect &r, bool proper=FALSE ) const;
+ bool contains( const TQPoint &p, bool proper=FALSE ) const;
+ bool contains( int x, int y ) const; // inline methods, _don't_ merge these
+ bool contains( int x, int y, bool proper ) const;
+ bool contains( const TQRect &r, bool proper=FALSE ) const;
TQRect unite( const TQRect &r ) const;
TQRect intersect( const TQRect &r ) const;
bool intersects( const TQRect &r ) const;
@@ -305,7 +305,7 @@ inline int TQRect::height() const
inline TQSize TQRect::size() const
{ return TQSize(x2-x1+1, y2-y1+1); }
-inline bool TQRect::tqcontains( int x, int y, bool proper ) const
+inline bool TQRect::contains( int x, int y, bool proper ) const
{
if ( proper )
return x > x1 && x < x2 &&
@@ -315,7 +315,7 @@ inline bool TQRect::tqcontains( int x, int y, bool proper ) const
y >= y1 && y <= y2;
}
-inline bool TQRect::tqcontains( int x, int y ) const
+inline bool TQRect::contains( int x, int y ) const
{
return x >= x1 && x <= x2 &&
y >= y1 && y <= y2;