C++11 tidying.
[dcpomatic.git] / src / wx / rename_template_dialog.cc
index 970c85a8b0e8d0b243374e0033e0b0dfb6a90228..714e080579893a57c4e2d587c647eea51b6cd9e1 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "rename_template_dialog.h"
 
+
 RenameTemplateDialog::RenameTemplateDialog (wxWindow* parent)
        : TableDialog (parent, _("Rename template"), 2, 1, true)
 {
        add (_("New name"), true);
-       _name = add (new wxTextCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (300, -1)));
+       _name = add (new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(300, -1)));
        layout ();
 
        _name->SetFocus ();
 }
 
+
 wxString
 RenameTemplateDialog::get () const
 {
        return _name->GetValue ();
 }
 
+
 void
 RenameTemplateDialog::set (wxString s)
 {