summaryrefslogtreecommitdiff
path: root/src/wx/dolby_doremi_certificate_panel.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/dolby_doremi_certificate_panel.cc')
-rw-r--r--src/wx/dolby_doremi_certificate_panel.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/dolby_doremi_certificate_panel.cc b/src/wx/dolby_doremi_certificate_panel.cc
index fcff93a06..18a0ed66e 100644
--- a/src/wx/dolby_doremi_certificate_panel.cc
+++ b/src/wx/dolby_doremi_certificate_panel.cc
@@ -205,12 +205,12 @@ DolbyDoremiCertificatePanel::finish_download (string serial, wxStaticText* messa
} else {
message->SetLabel (wxT (""));
- locked_stringstream s;
+ string s;
BOOST_FOREACH (string e, errors) {
- s << e << "\n";
+ s += e + "\n";
}
- error_dialog (this, std_to_wx (s.str ()));
+ error_dialog (this, std_to_wx (s));
}
}