diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-10-17 19:46:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-10-17 19:46:18 +0100 |
| commit | 3c74b178eeea8418f044877f88e94003605497b6 (patch) | |
| tree | 950bf821e69e530d241dacbb9e5c522d0e5788cc /src/wx/full_config_dialog.cc | |
| parent | ce9bb37168f52a8d1348e1334fc15d5778fffa75 (diff) | |
Remove wxWidgets' file overwrite checks in favour of our own (because of #1383).
Diffstat (limited to 'src/wx/full_config_dialog.cc')
| -rw-r--r-- | src/wx/full_config_dialog.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc index 974635a8b..8c822e173 100644 --- a/src/wx/full_config_dialog.cc +++ b/src/wx/full_config_dialog.cc @@ -191,8 +191,7 @@ private: void export_cinemas_file () { wxFileDialog* d = new wxFileDialog ( - _panel, _("Select Cinemas File"), wxEmptyString, wxEmptyString, wxT ("XML files (*.xml)|*.xml"), - wxFD_SAVE | wxFD_OVERWRITE_PROMPT + _panel, _("Select Cinemas File"), wxEmptyString, wxEmptyString, wxT ("XML files (*.xml)|*.xml"), wxFD_SAVE ); if (d->ShowModal () == wxID_OK) { |
