From 7085d7305dd97a182697972bdcaeefe07cf1023f Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Sat, 20 Aug 2016 23:20:57 +1000 Subject: Use locale independent string conversion functions in SVAModifier class --- libs/canvas/colors.cc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'libs/canvas') diff --git a/libs/canvas/colors.cc b/libs/canvas/colors.cc index 0bd3f8b049..f03baa52fd 100644 --- a/libs/canvas/colors.cc +++ b/libs/canvas/colors.cc @@ -22,9 +22,9 @@ #include #include -#include "pbd/convert.h" #include "pbd/failed_constructor.h" #include "pbd/locale_guard.h" +#include "pbd/string_convert.h" #include "canvas/colors.h" #include "canvas/colorspace.h" @@ -261,10 +261,10 @@ HSV::to_string () const { PBD::LocaleGuard lg; stringstream ss; - ss << h << ' '; - ss << s << ' '; - ss << v << ' '; - ss << a; + ss << PBD::to_string(h) << ' '; + ss << PBD::to_string(s) << ' '; + ss << PBD::to_string(v) << ' '; + ss << PBD::to_string(a); return ss.str(); } @@ -583,11 +583,11 @@ SVAModifier::from_string (string const & str) while (ss) { ss >> mod; if ((pos = mod.find ("alpha:")) != string::npos) { - _a = PBD::atof (mod.substr (pos+6)); + _a = PBD::string_to(mod.substr (pos+6)); } else if ((pos = mod.find ("saturate:")) != string::npos) { - _s = PBD::atof (mod.substr (pos+9)); + _s = PBD::string_to(mod.substr (pos+9)); } else if ((pos = mod.find ("darkness:")) != string::npos) { - _v = PBD::atof (mod.substr (pos+9)); + _v = PBD::string_to(mod.substr (pos+9)); } else { throw failed_constructor (); } @@ -613,15 +613,15 @@ SVAModifier::to_string () const } if (_s >= 0.0) { - ss << " saturate:" << _s; + ss << " saturate:" << PBD::to_string(_s); } if (_v >= 0.0) { - ss << " darker:" << _v; + ss << " darker:" << PBD::to_string(_v); } if (_a >= 0.0) { - ss << " alpha:" << _a; + ss << " alpha:" << PBD::to_string(_a); } return ss.str(); -- cgit v1.2.3