summaryrefslogtreecommitdiff
path: root/ui/sync_cfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/sync_cfg.h')
-rw-r--r--ui/sync_cfg.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/sync_cfg.h b/ui/sync_cfg.h
index dae79d1d..3d5eb88c 100644
--- a/ui/sync_cfg.h
+++ b/ui/sync_cfg.h
@@ -7,8 +7,10 @@
#ifndef SYNCCONFIG_H_INCLUDED
#define SYNCCONFIG_H_INCLUDED
+#include <wx/window.h>
#include "../lib/process_xml.h"
+
namespace zen
{
struct ReturnSyncConfig
@@ -16,7 +18,7 @@ struct ReturnSyncConfig
enum ButtonPressed
{
BUTTON_CANCEL,
- BUTTON_OKAY = 1
+ BUTTON_OKAY
};
};
@@ -28,7 +30,8 @@ struct ExecWhenFinishedCfg
};
-ReturnSyncConfig::ButtonPressed showSyncConfigDlg(CompareVariant compareVar,
+ReturnSyncConfig::ButtonPressed showSyncConfigDlg(wxWindow* parent,
+ CompareVariant compareVar,
SyncConfig& syncCfg,
xmlAccess::OnGuiError* handleError, //
ExecWhenFinishedCfg* execWhenFinished); //optional input parameter
bgstack15