mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added some missing 'override' decorators
This commit is contained in:
parent
0a377a95c5
commit
06c1a15496
18 changed files with 37 additions and 37 deletions
|
|
@ -223,7 +223,7 @@ public:
|
|||
|
||||
protected:
|
||||
/** @internal */
|
||||
virtual void propertyChanged();
|
||||
void propertyChanged() override;
|
||||
|
||||
private:
|
||||
//==============================================================================
|
||||
|
|
|
|||
|
|
@ -72,12 +72,12 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
var getValue() const
|
||||
var getValue() const override
|
||||
{
|
||||
return value;
|
||||
}
|
||||
|
||||
void setValue (const var& newValue)
|
||||
void setValue (const var& newValue) override
|
||||
{
|
||||
if (! newValue.equalsWithSameType (value))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -814,8 +814,8 @@ public:
|
|||
tree.removeListener (this);
|
||||
}
|
||||
|
||||
var getValue() const { return tree [property]; }
|
||||
void setValue (const var& newValue) { tree.setProperty (property, newValue, undoManager); }
|
||||
var getValue() const override { return tree [property]; }
|
||||
void setValue (const var& newValue) override { tree.setProperty (property, newValue, undoManager); }
|
||||
|
||||
private:
|
||||
ValueTree tree;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue