summaryrefslogtreecommitdiff
path: root/src/wx/time_picker.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/time_picker.cc')
-rw-r--r--src/wx/time_picker.cc2
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()));