Fix build issues and typos after c69de2ba4

This commit is contained in:
Rémi Verschelde
2018-07-20 08:37:10 +02:00
parent 286c88bb50
commit 8c9e10553c
9 changed files with 28 additions and 14 deletions

View File

@ -64,16 +64,16 @@ protected:
order(0),
persist(false),
hide_from_editor(false),
overridden(false) {
restart_if_changed = false;
overridden(false),
restart_if_changed(false) {
}
VariantContainer(const Variant &p_variant, int p_order, bool p_persist = false) :
order(p_order),
persist(p_persist),
variant(p_variant),
hide_from_editor(false),
overridden(false) {
restart_if_changed = false;
overridden(false),
restart_if_changed(false) {
}
};