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-28 23:54:46 +0200
commit6536af518c2791ee80fc3190e7f5732e93f87351 (patch)
treeab93647e06645509346681b5cdbd93abc05073cf
parentb05b262a04a52abc2efb8a36ddbdfea8a1ed12cc (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;