diff options
Diffstat (limited to 'src/wx/recreate_chain_dialog.cc')
| -rw-r--r-- | src/wx/recreate_chain_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/recreate_chain_dialog.cc b/src/wx/recreate_chain_dialog.cc index 92e71af34..59fbeb6c7 100644 --- a/src/wx/recreate_chain_dialog.cc +++ b/src/wx/recreate_chain_dialog.cc @@ -38,9 +38,9 @@ RecreateChainDialog::RecreateChainDialog (wxWindow* parent, wxString title, wxSt _sizer->Add (new StaticText (this, message), 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); if (nag) { - wxCheckBox* shut_up = new CheckBox (this, _("Don't ask this again")); + auto shut_up = new CheckBox (this, _("Don't ask this again")); _sizer->Add (shut_up, 0, wxALL, DCPOMATIC_DIALOG_BORDER); - shut_up->Bind (wxEVT_CHECKBOX, bind (&RecreateChainDialog::shut_up, this, _1)); + shut_up->bind(&RecreateChainDialog::shut_up, this, _1); } layout (); |
