Use Collator for recipients search (#2426).
[dcpomatic.git] / src / wx / nag_dialog.cc
index 21d1c823e0bb949a758b6463d8662c87195166a7..04c3ce8e90ccae9ed69fc8a63c898a03ff571668 100644 (file)
@@ -44,7 +44,7 @@ NagDialog::NagDialog (wxWindow* parent, Config::Nag nag, wxString message, bool
 
        auto b = new CheckBox (this, _("Don't show this message again"));
        sizer->Add (b, 0, wxALL, 6);
-       b->Bind (wxEVT_CHECKBOX, bind (&NagDialog::shut_up, this, _1));
+       b->bind(&NagDialog::shut_up, this, _1);
 
        int flags = wxOK;
        if (can_cancel) {