Add Static option for Constant Value Nodes and the corresponding action to set and...
[synfig.git] / synfig-core / src / synfig / value.cpp
index fdc629b..5e5c333 100644 (file)
@@ -57,14 +57,15 @@ using namespace etl;
 
 /* === M E T H O D S ======================================================= */
 
-ValueBase::ValueBase():type(TYPE_NIL),data(0),ref_count(0),loop_(0)
+ValueBase::ValueBase():type(TYPE_NIL),data(0),ref_count(0),loop_(0),static_(0)
 {
 }
 
 ValueBase::ValueBase(Type x):
        type(x),
        data(0),
-       loop_(0)
+       loop_(0),
+       static_(0)
 {
        switch(type)
        {