From: Carl Hetherington Date: Mon, 14 Feb 2022 08:50:39 +0000 (+0100) Subject: No-op: tidying. X-Git-Tag: v2.16.1~3^2~4 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=dbfabb1412dbbc21331334031bedc61cbcb20263 No-op: tidying. --- diff --git a/src/wx/make_chain_dialog.cc b/src/wx/make_chain_dialog.cc index d681c00e8..10433de03 100644 --- a/src/wx/make_chain_dialog.cc +++ b/src/wx/make_chain_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2018 Carl Hetherington + Copyright (C) 2014-2022 Carl Hetherington This file is part of DCP-o-matic. @@ -18,12 +18,15 @@ */ + #include "make_chain_dialog.h" #include "static_text.h" #include + using std::string; + MakeChainDialog::MakeChainDialog ( wxWindow* parent, string organisation, @@ -57,7 +60,7 @@ MakeChainDialog::MakeChainDialog ( add (_("Root common name"), true); { - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); + auto s = new wxBoxSizer (wxHORIZONTAL); s->Add (new StaticText (this, wxT (".")), 0, wxALIGN_CENTER_VERTICAL); s->Add (_root_common_name = new wxTextCtrl ( this, wxID_ANY, std_to_wx (root_common_name), wxDefaultPosition, wxDefaultSize, 0, validator), 1, wxALIGN_CENTER_VERTICAL @@ -68,7 +71,7 @@ MakeChainDialog::MakeChainDialog ( add (_("Intermediate common name"), true); { - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); + auto s = new wxBoxSizer (wxHORIZONTAL); s->Add (new StaticText (this, wxT (".")), 0, wxALIGN_CENTER_VERTICAL); s->Add (_intermediate_common_name = new wxTextCtrl ( this, wxID_ANY, std_to_wx (intermediate_common_name), wxDefaultPosition, wxDefaultSize, 0, validator), 1, wxALIGN_CENTER_VERTICAL @@ -79,7 +82,7 @@ MakeChainDialog::MakeChainDialog ( add (_("Leaf common name"), true); { - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); + auto s = new wxBoxSizer (wxHORIZONTAL); s->Add (new StaticText (this, wxT ("CS.")), 0, wxALIGN_CENTER_VERTICAL); s->Add (_leaf_common_name = new wxTextCtrl ( this, wxID_ANY, std_to_wx (leaf_common_name), wxDefaultPosition, wxDefaultSize, 0, validator), 1, wxALIGN_CENTER_VERTICAL