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

Fixed typo in CoreGraphics code.

This commit is contained in:
jules 2012-11-20 15:01:17 +00:00
parent f24f7b638c
commit a971f93daf

View file

@ -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<int>& r)