From 422be0eece2bf6ee80db1d3c21553cd82efff789 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 22 Jul 2016 10:06:10 +0100 Subject: Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream. --- src/wx/colour_conversion_editor.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/wx/colour_conversion_editor.cc') diff --git a/src/wx/colour_conversion_editor.cc b/src/wx/colour_conversion_editor.cc index 01b1ca056..79365bf88 100644 --- a/src/wx/colour_conversion_editor.cc +++ b/src/wx/colour_conversion_editor.cc @@ -19,10 +19,10 @@ */ #include "lib/colour_conversion.h" -#include "lib/safe_stringstream.h" #include "lib/raw_convert.h" #include "wx_util.h" #include "colour_conversion_editor.h" +#include #include #include #include @@ -247,7 +247,7 @@ ColourConversionEditor::set (ColourConversion conversion) _ignore_chromaticity_changed = true; - SafeStringStream s; + locked_stringstream s; s.setf (std::ios::fixed, std::ios::floatfield); s.precision (6); @@ -394,7 +394,7 @@ ColourConversionEditor::update_bradford () boost::numeric::ublas::matrix m = get().bradford (); for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { - SafeStringStream s; + locked_stringstream s; s.setf (std::ios::fixed, std::ios::floatfield); s.precision (7); s << m (i, j); @@ -409,7 +409,7 @@ ColourConversionEditor::update_rgb_to_xyz () boost::numeric::ublas::matrix m = get().rgb_to_xyz (); for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { - SafeStringStream s; + locked_stringstream s; s.setf (std::ios::fixed, std::ios::floatfield); s.precision (7); s << m (i, j); @@ -442,7 +442,7 @@ ColourConversionEditor::set_spin_ctrl (wxSpinCtrlDouble* control, double value) void ColourConversionEditor::set_text_ctrl (wxTextCtrl* control, double value) { - SafeStringStream s; + locked_stringstream s; s.precision (7); s << value; control->SetValue (std_to_wx (s.str ())); -- cgit v1.2.3