From: Carl Hetherington Date: Tue, 2 Jan 2024 00:58:21 +0000 (+0100) Subject: Cleanup: auto. X-Git-Tag: v2.16.72~58 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=ed248a06bdf4421cde2af4eea3f711be915d27aa;p=dcpomatic.git Cleanup: auto. --- diff --git a/src/wx/kdm_cpl_panel.cc b/src/wx/kdm_cpl_panel.cc index 2a307c60c..4b481427f 100644 --- a/src/wx/kdm_cpl_panel.cc +++ b/src/wx/kdm_cpl_panel.cc @@ -49,7 +49,7 @@ KDMCPLPanel::KDMCPLPanel (wxWindow* parent, vector cpls) vertical->Add (s, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP + 2); /* CPL details */ - wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); + auto table = new wxFlexGridSizer(2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); add_label_to_sizer (table, this, _("DCP directory"), true); _dcp_directory = new StaticText (this, ""); table->Add (_dcp_directory);