geometry.cpp
changeset 754 db0ec4bcf416
parent 662 9abdd5e6c3dc
child 789 d85834ad8c54
     1.1 --- a/geometry.cpp	Tue Apr 07 16:15:53 2009 +0000
     1.2 +++ b/geometry.cpp	Mon Apr 20 10:42:05 2009 +0000
     1.3 @@ -37,7 +37,7 @@
     1.4  	return n;
     1.5  }
     1.6  
     1.7 -bool inBox(const QPointF &p, const QRectF &box)
     1.8 +bool isInBox(const QPointF &p, const QRectF &box)
     1.9  {
    1.10      if (p.x() >= box.left() && p.x() <= box.right()  
    1.11  	&& p.y() <= box.bottom() && p.y() >= box.top() )