Define ValueBase::set() for type 'char *' as well as for 'const char *'.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 10 Jan 2008 14:18:04 +0000 (14:18 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 10 Jan 2008 14:18:04 +0000 (14:18 +0000)
git-svn-id: http://svn.voria.com/code@1310 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/value.cpp
synfig-core/trunk/src/synfig/value.h

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
 {
index db2cbf3..3c41949 100644 (file)
@@ -260,6 +260,7 @@ public:
        void set(const float &x) { _set(Real(x)); }
        void set(const list_type &x);
        void set(const char* x);
+       void set(char* x);
        void set(Canvas*x);
        void set(etl::loose_handle<Canvas> x);
        void set(etl::handle<Canvas> x);