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
|
|
@ -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