No-op: tidying.
authorCarl Hetherington <cth@carlh.net>
Mon, 14 Feb 2022 08:50:39 +0000 (09:50 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 14 Feb 2022 08:50:39 +0000 (09:50 +0100)
src/wx/make_chain_dialog.cc

index d681c00e876f866e30caf59863854c5c1c6f4b3c..10433de034f71ad2592cd7907137a663ce89f425 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2022 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "make_chain_dialog.h"
 #include "static_text.h"
 #include <boost/algorithm/string.hpp>
 
+
 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