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

Fixed some uninitialised ValueWithDefault pointers in the ChoicePropertyComponents

This commit is contained in:
ed 2018-11-10 13:57:03 +00:00
parent 32aa676f01
commit 3ccbd29b39
4 changed files with 4 additions and 4 deletions

View file

@ -115,7 +115,7 @@ public:
private:
void valueChanged (Value&) override { sendChangeMessage (true); }
ValueWithDefault* valueWithDefault;
ValueWithDefault* valueWithDefault = nullptr;
Value sourceValue;
Array<var> mappings;