summaryrefslogtreecommitdiff
path: root/ui/sync_cfg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/sync_cfg.cpp')
-rw-r--r--ui/sync_cfg.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/sync_cfg.cpp b/ui/sync_cfg.cpp
index bbfcda06..406ca5c6 100644
--- a/ui/sync_cfg.cpp
+++ b/ui/sync_cfg.cpp
@@ -11,6 +11,7 @@
#include <wx/wupdlock.h>
#include "../shared/mouse_move_dlg.h"
#include "../shared/string_conv.h"
+#include "../shared/dir_picker_i18n.h"
using namespace ffs3;
@@ -28,7 +29,7 @@ SyncCfgDialog::SyncCfgDialog(wxWindow* window,
refHandleDeletion(handleDeletion),
refCustomDeletionDirectory(customDeletionDirectory),
refIgnoreErrors(ignoreErrors),
- customDelFolder(new DirectoryName(m_panelCustomDeletionDir, m_dirPickerCustomDelFolder, m_textCtrlCustomDelFolder))
+ customDelFolder(new DirectoryName(*m_panelCustomDeletionDir, *m_dirPickerCustomDelFolder, *m_textCtrlCustomDelFolder))
{
#ifdef FFS_WIN
new MouseMoveWindow(*this, //allow moving main dialog by clicking (nearly) anywhere...
bgstack15