Merge branch 'develop' of openspace.itn.liu.se:/openspace into feature/remote_redesign

This commit is contained in:
Joakim Kilby
2015-07-05 17:02:10 +02:00
@@ -312,7 +312,7 @@ bool NumericalProperty<T>::setStringValue(std::string value) {
bool success = false;
T thisValue = PropertyDelegate<NumericalProperty<T>>::template fromString<T>(value, success);
if (success)
set(boost::any(thisValue));
TemplateProperty<T>::set(boost::any(thisValue));
return success;
}