mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Minor clean-ups.
This commit is contained in:
parent
cf781ecb75
commit
522fd40e46
2 changed files with 5 additions and 5 deletions
|
|
@ -162,7 +162,7 @@ public:
|
|||
private:
|
||||
var value;
|
||||
|
||||
JUCE_DECLARE_NON_COPYABLE (SimpleValueSource)
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SimpleValueSource)
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -172,10 +172,10 @@ Value::Value()
|
|||
{
|
||||
}
|
||||
|
||||
Value::Value (ValueSource* const value_)
|
||||
: value (value_)
|
||||
Value::Value (ValueSource* const v)
|
||||
: value (v)
|
||||
{
|
||||
jassert (value_ != nullptr);
|
||||
jassert (v != nullptr);
|
||||
}
|
||||
|
||||
Value::Value (const var& initialValue)
|
||||
|
|
|
|||
|
|
@ -811,7 +811,7 @@ private:
|
|||
void valueTreeChildOrderChanged (ValueTree&) {}
|
||||
void valueTreeParentChanged (ValueTree&) {}
|
||||
|
||||
JUCE_DECLARE_NON_COPYABLE (ValueTreePropertyValueSource)
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ValueTreePropertyValueSource)
|
||||
};
|
||||
|
||||
Value ValueTree::getPropertyAsValue (const Identifier& name, UndoManager* const undoManager)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue