Return the translation of the local layer name, rather than always using the English...
[synfig.git] / synfig-core / trunk / src / synfig / value.cpp
index 515087e..6afa515 100644 (file)
@@ -6,6 +6,7 @@
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**     Copyright (c) 2007 Chris Moore
 **
 **     This package is free software; you can redistribute it and/or
 **     modify it under the terms of the GNU General Public License as
@@ -144,6 +145,12 @@ ValueBase::set(const char* x)
        _set(String(x));
 }
 
+void
+ValueBase::set(char* x)
+{
+       _set(String(x));
+}
+
 bool
 ValueBase::is_valid()const
 {