Define ValueBase::set() for type 'char *' as well as for 'const char *'.
[synfig.git] / synfig-core / trunk / src / synfig / value.cpp
index 7be5b49..6afa515 100644 (file)
@@ -145,6 +145,12 @@ ValueBase::set(const char* x)
        _set(String(x));
 }
 
+void
+ValueBase::set(char* x)
+{
+       _set(String(x));
+}
+
 bool
 ValueBase::is_valid()const
 {