From a971f93dafb02d5dbcd5e78ed150deeab0368775 Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 20 Nov 2012 15:01:17 +0000 Subject: [PATCH] Fixed typo in CoreGraphics code. --- modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm b/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm index 87418ac02d..b7a905d930 100644 --- a/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm +++ b/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm @@ -219,7 +219,7 @@ bool CoreGraphicsContext::clipToRectangleListWithoutTest (const RectangleList& c bool CoreGraphicsContext::clipToRectangleList (const RectangleList& clipRegion) { - return clipToRectangleList (clipRegion) && ! isClipEmpty(); + return clipToRectangleListWithoutTest (clipRegion) && ! isClipEmpty(); } void CoreGraphicsContext::excludeClipRectangle (const Rectangle& r)