Remove all use of stringstream in an attempt to fix
[dcpomatic.git] / src / wx / dolby_doremi_certificate_panel.cc
index fcff93a068a2d0c3b9a38f15fb2f0e67e2eb2301..18a0ed66ec34ba63e8156065329cc15ca1048873 100644 (file)
@@ -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));
        }
 }