diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-22 23:27:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-22 23:27:15 +0200 |
| commit | 3c29aa6531a4046a8db72dcac81189eb8893233c (patch) | |
| tree | ce2a134dab63df1711a135ae5732839ff293d958 /src/wx/file_picker_ctrl.cc | |
| parent | 92364afecf76a87e1f96980cb1b91cf6f6a7522c (diff) | |
Use libdcp's warnings.h
Diffstat (limited to 'src/wx/file_picker_ctrl.cc')
| -rw-r--r-- | src/wx/file_picker_ctrl.cc | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/wx/file_picker_ctrl.cc b/src/wx/file_picker_ctrl.cc index 3eb05e44d..284f7bc99 100644 --- a/src/wx/file_picker_ctrl.cc +++ b/src/wx/file_picker_ctrl.cc @@ -18,20 +18,23 @@ */ + +#include "dcpomatic_button.h" #include "file_picker_ctrl.h" #include "wx_util.h" -#include "dcpomatic_button.h" -#include "lib/warnings.h" -DCPOMATIC_DISABLE_WARNINGS -#include <wx/wx.h> -#include <wx/stdpaths.h> +#include <dcp/warnings.h> +LIBDCP_DISABLE_WARNINGS #include <wx/filepicker.h> -DCPOMATIC_ENABLE_WARNINGS +#include <wx/stdpaths.h> +#include <wx/wx.h> +LIBDCP_ENABLE_WARNINGS #include <boost/filesystem.hpp> + using namespace std; using namespace boost; + FilePickerCtrl::FilePickerCtrl (wxWindow* parent, wxString prompt, wxString wildcard, bool open, bool warn_overwrite) : wxPanel (parent) , _prompt (prompt) |
