X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Fdolby_doremi_certificate_panel.cc;fp=src%2Fwx%2Fdolby_doremi_certificate_panel.cc;h=18a0ed66ec34ba63e8156065329cc15ca1048873;hb=b1dc9c3a2f7e55c9afc5bf2d5b465371b048e14f;hp=fcff93a068a2d0c3b9a38f15fb2f0e67e2eb2301;hpb=4a0ae92e28d7d1f0dd648d1b620efc324fdef161;p=dcpomatic.git 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)); } }