summaryrefslogtreecommitdiff
path: root/ui/batch_status_handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/batch_status_handler.cpp')
-rw-r--r--ui/batch_status_handler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/batch_status_handler.cpp b/ui/batch_status_handler.cpp
index e67e4426..c3dfc8df 100644
--- a/ui/batch_status_handler.cpp
+++ b/ui/batch_status_handler.cpp
@@ -33,7 +33,7 @@ public:
//write header
wxString headerLine = wxString(wxT("FreeFileSync - ")) +
_("Batch execution") + wxT(" (") +
- _("Date") + wxT(": ") + wxDateTime::Now().FormatDate() + wxT(" ") + //"Date" is used at other places too
+ _("Date") + wxT(": ") + wxDateTime::Now().FormatDate() + wxT(" ") + //"Date" is used at other places, too
_("Time") + wxT(":") + wxT(" ") + wxDateTime::Now().FormatTime() + wxT(")");
logFile.Write(headerLine + wxChar('\n'));
logFile.Write(wxString().Pad(headerLine.Len(), wxChar('-')) + wxChar('\n') + wxChar('\n'));
@@ -213,7 +213,7 @@ BatchStatusHandler::~BatchStatusHandler()
inline
-void BatchStatusHandler::updateStatusText(const Zstring& text)
+void BatchStatusHandler::reportInfo(const Zstring& text)
{
if (currentProcess == StatusHandler::PROCESS_SYNCHRONIZING && logFile.get()) //write file transfer information to log
errorLog.logInfo(zToWx(text));
@@ -266,7 +266,7 @@ void BatchStatusHandler::updateProcessedData(int objectsProcessed, wxLongLong da
}
-void BatchStatusHandler::reportInfo(const wxString& infoMessage)
+void BatchStatusHandler::logInfo(const wxString& infoMessage)
{
errorLog.logInfo(infoMessage);
}
bgstack15