summaryrefslogtreecommitdiffstats
path: root/kig/misc/rect.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kig/misc/rect.cc')
-rw-r--r--kig/misc/rect.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/kig/misc/rect.cc b/kig/misc/rect.cc
index 183f50f8..c3f56d1e 100644
--- a/kig/misc/rect.cc
+++ b/kig/misc/rect.cc
@@ -211,7 +211,7 @@ double Rect::height() const
return mheight;
}
-bool Rect::contains( const Coordinate& p, double allowed_miss ) const
+bool Rect::tqcontains( const Coordinate& p, double allowed_miss ) const
{
return p.x - left() >= - allowed_miss &&
p.y - bottom() >= - allowed_miss &&
@@ -219,7 +219,7 @@ bool Rect::contains( const Coordinate& p, double allowed_miss ) const
p.y - bottom() - height() <= allowed_miss;
}
-bool Rect::contains( const Coordinate& p ) const
+bool Rect::tqcontains( const Coordinate& p ) const
{
return p.x >= left() &&
p.y >= bottom() &&