summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-23 01:59:28 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-23 01:59:28 +0200
commit8de886e26ba382f5593069386e3c7d1ff35d4192 (patch)
treedd9af6f27cfe52ebae5b344744624590be82cc08
parent1d14e44952b8cd1430946437995ee0fa360d9bf7 (diff)
Fix Windows build.
-rw-r--r--src/wx/dkdm_output_panel.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wx/dkdm_output_panel.cc b/src/wx/dkdm_output_panel.cc
index 5b04f740a..cc02721ed 100644
--- a/src/wx/dkdm_output_panel.cc
+++ b/src/wx/dkdm_output_panel.cc
@@ -31,15 +31,19 @@
#include <dcp/exceptions.h>
#include <dcp/types.h>
#include <dcp/warnings.h>
+
#ifdef DCPOMATIC_USE_OWN_PICKER
#include "dir_picker_ctrl.h"
#else
LIBDCP_DISABLE_WARNINGS
#include <wx/filepicker.h>
-#include <wx/stdpaths.h>
LIBDCP_ENABLE_WARNINGS
#endif
+LIBDCP_DISABLE_WARNINGS
+#include <wx/stdpaths.h>
+LIBDCP_ENABLE_WARNINGS
+
using std::exception;
using std::function;