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:
parent
f24f7b638c
commit
a971f93daf
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue