mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-03 03:30:06 +00:00
Minor code clean-ups.
This commit is contained in:
parent
9f201da3c5
commit
08eb852103
289 changed files with 779 additions and 780 deletions
|
|
@ -96,7 +96,7 @@ private:
|
|||
var value;
|
||||
|
||||
SimpleValueSource (const SimpleValueSource&);
|
||||
const SimpleValueSource& operator= (const SimpleValueSource&);
|
||||
SimpleValueSource& operator= (const SimpleValueSource&);
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -122,7 +122,7 @@ Value::Value (const Value& other)
|
|||
{
|
||||
}
|
||||
|
||||
const Value& Value::operator= (const Value& other)
|
||||
Value& Value::operator= (const Value& other)
|
||||
{
|
||||
value = other.value;
|
||||
return *this;
|
||||
|
|
@ -150,7 +150,7 @@ const String Value::toString() const
|
|||
return value->getValue().toString();
|
||||
}
|
||||
|
||||
const Value& Value::operator= (const var& newValue)
|
||||
Value& Value::operator= (const var& newValue)
|
||||
{
|
||||
value->setValue (newValue);
|
||||
return *this;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue