From 88a8b528e20013c0aa3cc6bcd9659b0b5ddd9170 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:20:07 +0200 Subject: 5.4 --- lib/perf_check.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/perf_check.cpp') diff --git a/lib/perf_check.cpp b/lib/perf_check.cpp index 897be12c..ab0f7769 100644 --- a/lib/perf_check.cpp +++ b/lib/perf_check.cpp @@ -79,7 +79,7 @@ wxString PerfCheck::getRemainingTime(double dataRemaining) const return zen::remainingTimeToShortString(remTimeSec); } } - return wxT("-"); //fallback + return L"-"; //fallback } @@ -102,7 +102,7 @@ wxString PerfCheck::getBytesPerSecond() const if (dataDelta > 0) //may be negative if user cancels copying return zen::filesizeToShortString(zen::Int64(dataDelta * 1000 / timeDelta)) + _("/sec"); } - return wxT("-"); //fallback + return L"-"; //fallback } @@ -120,7 +120,7 @@ wxString PerfCheck::getOverallBytesPerSecond() const //for all samples if (dataDelta > 0) //may be negative if user cancels copying return zen::filesizeToShortString(zen::Int64(dataDelta * 1000 / timeDelta)) + _("/sec"); } - return wxT("-"); //fallback + return L"-"; //fallback } @@ -255,5 +255,4 @@ wxString Statistics::getRemainingTime(const int objectsCurrent, const double dat return formatRemainingTime((objectsTotal - objectsCurrent) * z1_current + (dataTotal - dataCurrent) * z2_current); } - */ -- cgit