Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / wx / time_picker.cc
index 0853e4fcbb14d6f9ba9ba938f46204f07d89cd68..a18182138af0be609e4136315d329333f80ef4d8 100644 (file)
@@ -82,7 +82,7 @@ TimePicker::update_text ()
 
        _hours->SetValue (std_to_wx (raw_convert<string> (_hours_spin->GetValue ())));
 
-       SafeStringStream m;
+       locked_stringstream m;
        m << setfill('0') << setw(2) << _minutes_spin->GetValue();
        _minutes->SetValue (std_to_wx (m.str()));