1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-18 00:54:19 +00:00

Fixed an unused variable warning

This commit is contained in:
jules 2017-05-03 11:23:27 +01:00
parent e38643b2a9
commit f55cbf3724

View file

@ -116,7 +116,7 @@ void ValueTreeSynchroniser::valueTreePropertyChanged (ValueTree& vt, const Ident
{
ValueTreeSynchroniserHelpers::writeHeader (*this, m, ValueTreeSynchroniserHelpers::propertyChanged, vt);
m.writeString (property.toString());
vt.getProperty (property).writeToStream (m);
value->writeToStream (m);
}
else
{