mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-20 01:14:20 +00:00
Added some 'override' modifiers to overridden methods.
This commit is contained in:
parent
7bd867794c
commit
c75a7300f5
140 changed files with 584 additions and 589 deletions
|
|
@ -286,13 +286,13 @@ public:
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
void paint (Graphics& g)
|
||||
void paint (Graphics& g) override
|
||||
{
|
||||
if (child == nullptr || ! child->isOpaque())
|
||||
g.fillAll (Colours::white);
|
||||
}
|
||||
|
||||
void resized()
|
||||
void resized() override
|
||||
{
|
||||
if (child != nullptr && ! isFirefox4)
|
||||
child->setBounds (getLocalBounds());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue