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.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/batch_config.h b/ui/batch_config.h
index 642cea00..5a1c177a 100644
--- a/ui/batch_config.h
+++ b/ui/batch_config.h
@@ -8,7 +8,7 @@
#define BATCHCONFIG_H_INCLUDED
#include "../lib/process_xml.h"
-#include "../lib/folder_history_box.h"
+#include "folder_history_box.h"
namespace zen
{
@@ -24,7 +24,9 @@ struct ReturnBatchConfig
ReturnBatchConfig::ButtonPressed showSyncBatchDlg(const wxString& referenceFile,
const xmlAccess::XmlBatchConfig& batchCfg,
const std::shared_ptr<FolderHistory>& folderHistLeft,
- const std::shared_ptr<FolderHistory>& folderHistRight);
+ const std::shared_ptr<FolderHistory>& folderHistRight,
+ std::vector<std::wstring>& execFinishedhistory,
+ size_t execFinishedhistoryMax);
}
bgstack15