Lots of #include <iostream>s for Arch.
[dcpomatic.git] / src / wx / key_dialog.cc
index 6133e85834a350ea8514f335379082c1891a27ed..d8005a600bdaaf1e320dfec32969814afdac40a0 100644 (file)
@@ -19,6 +19,7 @@
 
 #include "key_dialog.h"
 #include "wx_util.h"
+#include <iostream>
 
 using std::cout;
 
@@ -41,7 +42,7 @@ KeyDialog::KeyDialog (wxWindow* parent, dcp::Key key)
 
         validator.SetIncludes (list);
 
-       _key = add (new wxTextCtrl (this, wxID_ANY, _(""), wxDefaultPosition, size, 0, validator));
+       _key = add (new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator));
        _key->SetValue (std_to_wx (key.hex ()));
        _key->SetMaxLength (32);