X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fplayer_config_dialog.cc;h=802ab6b3bcb7ee40ee3d68818db43eabaa5ab221;hb=bb5acc8b8d783a4133b0b10285937d9151dc57c9;hp=06a1ef56b2735da97401fc43f261a6e50a3127b4;hpb=a5d004b0773f633401528392fc28e66d70e13ac8;p=dcpomatic.git diff --git a/src/wx/player_config_dialog.cc b/src/wx/player_config_dialog.cc index 06a1ef56b..802ab6b3b 100644 --- a/src/wx/player_config_dialog.cc +++ b/src/wx/player_config_dialog.cc @@ -28,13 +28,11 @@ #include "filter_dialog.h" #include "file_picker_ctrl.h" #include "dir_picker_ctrl.h" -#include "isdcf_metadata_dialog.h" #include "server_dialog.h" #include "make_chain_dialog.h" #include "email_dialog.h" #include "name_format_editor.h" #include "nag_dialog.h" -#include "monitor_dialog.h" #include "check_box.h" #include "static_text.h" #include "lib/config.h" @@ -65,7 +63,7 @@ using std::make_pair; using std::map; using boost::bind; using std::shared_ptr; -using boost::function; +using std::function; using boost::optional; #if BOOST_VERSION >= 106100 using namespace boost::placeholders; @@ -123,12 +121,12 @@ private: ++r; add_label_to_sizer (table, _panel, _("Activity log file"), true, wxGBPosition (r, 0)); - _activity_log_file = new FilePickerCtrl (_panel, _("Select activity log file"), "*", true, true); + _activity_log_file = new FilePickerCtrl (_panel, _("Select activity log file"), "*", false, true); table->Add (_activity_log_file, wxGBPosition(r, 1)); ++r; add_label_to_sizer (table, _panel, _("Debug log file"), true, wxGBPosition (r, 0)); - _debug_log_file = new FilePickerCtrl (_panel, _("Select debug log file"), "*", true, true); + _debug_log_file = new FilePickerCtrl (_panel, _("Select debug log file"), "*", false, true); table->Add (_debug_log_file, wxGBPosition(r, 1)); ++r;