summaryrefslogtreecommitdiff
path: root/ui/batch_status_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/batch_status_handler.h')
-rw-r--r--ui/batch_status_handler.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/ui/batch_status_handler.h b/ui/batch_status_handler.h
index c6def13c..77a32f28 100644
--- a/ui/batch_status_handler.h
+++ b/ui/batch_status_handler.h
@@ -1,7 +1,7 @@
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) ZenJu (zhnmju123 AT gmx DOT de) - All Rights Reserved *
+// * Copyright (C) ZenJu (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#ifndef BATCHSTATUSHANDLER_H_INCLUDED
@@ -9,6 +9,7 @@
#include <zen/error_log.h>
#include <zen/file_io.h>
+#include <zen/time.h>
#include "../lib/status_handler.h"
#include "../lib/process_xml.h"
#include "progress_indicator.h"
@@ -25,9 +26,9 @@ class BatchStatusHandler : public zen::StatusHandler
public:
BatchStatusHandler(bool showProgress, //defines: -start minimized and -quit immediately when finished
const std::wstring& jobName, //should not be empty for a batch job!
- const std::wstring& timestamp,
- const wxString& logfileDirectory,
- size_t logFileCountMax, //0 if logging shall be inactive
+ const zen::TimeComp& timeStamp,
+ const Zstring& logfileDirectory,
+ int logfilesCountLimit, //0: logging inactive; < 0: no limit
const xmlAccess::OnError handleError,
const zen::SwitchToGui& switchBatchToGui, //functionality to change from batch mode to GUI mode
zen::FfsReturnCode& returnCode,
bgstack15