diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-18 15:10:14 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-12-18 15:10:36 +0100 |
| commit | 915128d7a79dc0cb180489ba2110841d0fe17907 (patch) | |
| tree | 013fa07f0b52faa0a60326db90a9995049ec4a11 | |
| parent | bba9cd814b189f6458dee4a109369a7d4ae0e3ce (diff) | |
C++11 tidying.
| -rw-r--r-- | src/wx/recipient_dialog.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wx/recipient_dialog.cc b/src/wx/recipient_dialog.cc index d59226a96..3c0331e9f 100644 --- a/src/wx/recipient_dialog.cc +++ b/src/wx/recipient_dialog.cc @@ -60,7 +60,7 @@ RecipientDialog::RecipientDialog ( : wxDialog (parent, wxID_ANY, title) , _recipient (recipient) { - wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL); + auto overall_sizer = new wxBoxSizer (wxVERTICAL); SetSizer (overall_sizer); _sizer = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); @@ -96,14 +96,14 @@ RecipientDialog::RecipientDialog ( ++r; wxClientDC dc (this); - wxFont font = _name->GetFont (); + auto font = _name->GetFont (); font.SetFamily (wxFONTFAMILY_TELETYPE); dc.SetFont (font); wxSize size = dc.GetTextExtent (wxT ("1234567890123456789012345678")); size.SetHeight (-1); add_label_to_sizer (_sizer, this, _("Recipient certificate"), true, wxGBPosition (r, 0)); - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); + auto s = new wxBoxSizer (wxHORIZONTAL); _recipient_thumbprint = new StaticText (this, wxT (""), wxDefaultPosition, size); _recipient_thumbprint->SetFont (font); set_recipient (recipient); @@ -121,7 +121,7 @@ RecipientDialog::RecipientDialog ( overall_sizer->Add (_sizer, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); - wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL); + auto buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL); if (buttons) { overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder()); } @@ -185,7 +185,7 @@ RecipientDialog::load_recipient (boost::filesystem::path file) void RecipientDialog::get_recipient_from_file () { - wxFileDialog* d = new wxFileDialog (this, _("Select Certificate File")); + auto d = new wxFileDialog (this, _("Select Certificate File")); if (d->ShowModal () == wxID_OK) { load_recipient (boost::filesystem::path (wx_to_std (d->GetPath ()))); } @@ -198,7 +198,7 @@ RecipientDialog::get_recipient_from_file () void RecipientDialog::setup_sensitivity () { - wxButton* ok = dynamic_cast<wxButton*> (FindWindowById (wxID_OK, this)); + auto ok = dynamic_cast<wxButton*> (FindWindowById(wxID_OK, this)); if (ok) { ok->Enable (static_cast<bool>(_recipient) && !_name->GetValue().IsEmpty()); } |
