diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-08-30 22:55:37 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-08-30 22:55:37 +0200 |
| commit | 318b4e3e081f7c072fd75fbbd72b1ae3737f0da4 (patch) | |
| tree | f1c57ee8d3ebadb6836c144d590e268213befa56 | |
| parent | b16b0da184b349c9565a9e556b22164a2a158970 (diff) | |
Cleanup: auto
| -rw-r--r-- | src/wx/full_config_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc index bb804cae8..bcaa61a9b 100644 --- a/src/wx/full_config_dialog.cc +++ b/src/wx/full_config_dialog.cc @@ -118,7 +118,7 @@ private: add_label_to_sizer (table, _panel, _("Cinema and screen database file"), true, wxGBPosition (r, 0)); _cinemas_file = new FilePickerCtrl (_panel, _("Select cinema and screen database file"), "*.xml", true, false); table->Add (_cinemas_file, wxGBPosition (r, 1)); - Button* export_cinemas = new Button (_panel, _("Export...")); + auto export_cinemas = new Button (_panel, _("Export...")); table->Add (export_cinemas, wxGBPosition (r, 2)); ++r; |
