diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-07-22 10:06:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-07-22 10:06:10 +0100 |
| commit | 422be0eece2bf6ee80db1d3c21553cd82efff789 (patch) | |
| tree | 57604c446361be99eb092f35e703445260ada84a /src/wx/time_picker.cc | |
| parent | e34db1b3cdb5bce5ddcb112ee03664a4e463032a (diff) | |
Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
Diffstat (limited to 'src/wx/time_picker.cc')
| -rw-r--r-- | src/wx/time_picker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/time_picker.cc b/src/wx/time_picker.cc index 0853e4fcb..a18182138 100644 --- a/src/wx/time_picker.cc +++ b/src/wx/time_picker.cc @@ -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())); |
