1
0
Fork 0
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:
jules 2015-05-15 12:54:44 +01:00
parent 0a377a95c5
commit 06c1a15496
18 changed files with 37 additions and 37 deletions

View file

@ -223,7 +223,7 @@ public:
protected:
/** @internal */
virtual void propertyChanged();
void propertyChanged() override;
private:
//==============================================================================

View file

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

View file

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