summaryrefslogtreecommitdiff
path: root/ui/batch_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/batch_config.h')
-rw-r--r--ui/batch_config.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/ui/batch_config.h b/ui/batch_config.h
index 9a272261..02f9b5f8 100644
--- a/ui/batch_config.h
+++ b/ui/batch_config.h
@@ -8,7 +8,7 @@
#define BATCHCONFIG_H_INCLUDED
#include "../library/process_xml.h"
-
+#include "../shared/folder_history_box.h"
namespace zen
{
@@ -21,8 +21,10 @@ struct ReturnBatchConfig
};
};
-ReturnBatchConfig::ButtonPressed showSyncBatchDlg(const wxString& filename);
-ReturnBatchConfig::ButtonPressed showSyncBatchDlg(const xmlAccess::XmlBatchConfig& batchCfg);
+ReturnBatchConfig::ButtonPressed showSyncBatchDlg(const wxString& referenceFile,
+ const xmlAccess::XmlBatchConfig& batchCfg,
+ const std::shared_ptr<FolderHistory>& folderHistLeft,
+ const std::shared_ptr<FolderHistory>& folderHistRight);
}
bgstack15