From 4226e548662339ea1ca37b45385a7cf9b237ff1e Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:07:43 +0200 Subject: 3.8 --- ui/batchStatusHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/batchStatusHandler.cpp') diff --git a/ui/batchStatusHandler.cpp b/ui/batchStatusHandler.cpp index b7589497..6914d9f5 100644 --- a/ui/batchStatusHandler.cpp +++ b/ui/batchStatusHandler.cpp @@ -106,7 +106,7 @@ private: //ensure uniqueness for (int i = 1; FreeFileSync::somethingExists(wxToZ(output)); ++i) - output = logfileName + wxChar('_') + numberToWxString(i, false) + wxT(".log"); + output = logfileName + wxChar('_') + globalFunctions::numberToString(i) + wxT(".log"); return output; } @@ -185,7 +185,7 @@ BatchStatusHandler::~BatchStatusHandler() if (totalErrors > 0) { wxString header(_("Warning: Synchronization failed for %x item(s):")); - header.Replace(wxT("%x"), FreeFileSync::numberToWxString(totalErrors, true), false); + header.Replace(wxT("%x"), FreeFileSync::numberToStringSep(totalErrors), false); finalMessage += header + wxT("\n\n"); } -- cgit