mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-07 04:10:08 +00:00
Added some more override decorators.
This commit is contained in:
parent
4ce1908f79
commit
4fc8fbaef1
38 changed files with 139 additions and 146 deletions
|
|
@ -728,9 +728,9 @@ public:
|
|||
g.drawImageAt (image, 0, 0);
|
||||
}
|
||||
|
||||
void invalidateAll() { validArea.clear(); }
|
||||
void invalidate (const Rectangle<int>& area) { validArea.subtract (area); }
|
||||
void releaseResources() { image = Image::null; }
|
||||
void invalidateAll() override { validArea.clear(); }
|
||||
void invalidate (const Rectangle<int>& area) override { validArea.subtract (area); }
|
||||
void releaseResources() override { image = Image::null; }
|
||||
|
||||
private:
|
||||
Image image;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue