1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added a new callback ValueTree::Listener::valueTreeRedirected()

This commit is contained in:
jules 2012-07-03 20:47:06 +01:00
parent 46c327d902
commit 7f74968cef
2 changed files with 8 additions and 7 deletions

View file

@ -663,6 +663,8 @@ ValueTree& ValueTree::operator= (const ValueTree& other)
}
object = other.object;
listeners.call (&ValueTree::Listener::valueTreeRedirected, *this);
return *this;
}
@ -671,12 +673,6 @@ ValueTree::ValueTree (ValueTree&& other) noexcept
: object (static_cast <SharedObject::Ptr&&> (other.object))
{
}
ValueTree& ValueTree::operator= (ValueTree&& other) noexcept
{
object = static_cast <SharedObject::Ptr&&> (other.object);
return *this;
}
#endif
ValueTree::~ValueTree()