From b09cc5e275d9233f1fa5afc2c3f857d3df0c010a Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 2 Sep 2013 14:49:41 +0100 Subject: [PATCH] Fix for RectangleList --- modules/juce_graphics/geometry/juce_RectangleList.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_graphics/geometry/juce_RectangleList.h b/modules/juce_graphics/geometry/juce_RectangleList.h index 19bb7f5608..84a4822987 100644 --- a/modules/juce_graphics/geometry/juce_RectangleList.h +++ b/modules/juce_graphics/geometry/juce_RectangleList.h @@ -421,7 +421,7 @@ public: */ bool containsPoint (ValueType x, ValueType y) const noexcept { - return contains (Point (x, y)); + return containsPoint (Point (x, y)); } /** Checks whether the region contains the whole of a given rectangle.