1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix for RectangleList

This commit is contained in:
jules 2013-09-02 14:49:41 +01:00
parent 614afb1ca6
commit b09cc5e275

View file

@ -421,7 +421,7 @@ public:
*/
bool containsPoint (ValueType x, ValueType y) const noexcept
{
return contains (Point<ValueType> (x, y));
return containsPoint (Point<ValueType> (x, y));
}
/** Checks whether the region contains the whole of a given rectangle.