summaryrefslogtreecommitdiff
path: root/src/wx/kdm_output_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-06 12:38:09 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-09 13:44:52 +0100
commit47ba29c99df5afa93ce70ad2240c5d1b69dd1094 (patch)
tree52c675acf03b9b9cac14e4aa8530bc139b0e7624 /src/wx/kdm_output_panel.cc
parent0057e5e0e8014627a72da53bcb004e5df5b71f17 (diff)
Rename DCPOMATIC_USE_OWN_DIR_PICKER -> DCPOMATIC_USE_OWN_PICKER.
Diffstat (limited to 'src/wx/kdm_output_panel.cc')
-rw-r--r--src/wx/kdm_output_panel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/kdm_output_panel.cc b/src/wx/kdm_output_panel.cc
index fd97d1c3b..db4ad8647 100644
--- a/src/wx/kdm_output_panel.cc
+++ b/src/wx/kdm_output_panel.cc
@@ -20,7 +20,7 @@
#include "kdm_output_panel.h"
#include "wx_util.h"
#include <dcp/types.h>
-#ifdef DCPOMATIC_USE_OWN_DIR_PICKER
+#ifdef DCPOMATIC_USE_OWN_PICKER
#include "dir_picker_ctrl.h"
#else
#include <wx/filepicker.h>
@@ -45,7 +45,7 @@ KDMOutputPanel::KDMOutputPanel (wxWindow* parent, bool interop)
_write_to = new wxRadioButton (this, wxID_ANY, _("Write to"));
table->Add (_write_to, 1, wxEXPAND);
-#ifdef DCPOMATIC_USE_OWN_DIR_PICKER
+#ifdef DCPOMATIC_USE_OWN_PICKER
_folder = new DirPickerCtrl (this);
#else
_folder = new wxDirPickerCtrl (this, wxID_ANY, wxEmptyString, wxDirSelectorPromptStr, wxDefaultPosition, wxSize (300, -1));