flagrowobj.cpp
changeset 754 db0ec4bcf416
parent 746 ee6b0f3a4c2f
child 766 7a71a914afdb
     1.1 --- a/flagrowobj.cpp	Tue Apr 07 16:15:53 2009 +0000
     1.2 +++ b/flagrowobj.cpp	Mon Apr 20 10:42:05 2009 +0000
     1.3 @@ -110,9 +110,9 @@
     1.4  
     1.5  QString FlagRowObj::getFlagName (const QPointF &p)
     1.6  {
     1.7 -	if (!inBox (p,clickBox)) return "";
     1.8 +	if (!isInBox (p,clickBox)) return "";
     1.9  	for (int i=0; i<flag.size(); ++i)
    1.10 -		if (inBox (p,flag.at(i)->getClickBox ())) return flag.at(i)->getName();
    1.11 +		if (isInBox (p,flag.at(i)->getClickBox ())) return flag.at(i)->getName();
    1.12  	return "";	
    1.13  
    1.14