summaryrefslogtreecommitdiff
path: root/lib/perf_check.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
commit0887aee8c54d0ed51bb2031431e2bcdafebb4c6e (patch)
tree69537ceb9787bb25ac363cc4e6cdaf0804d78363 /lib/perf_check.h
parent5.12 (diff)
downloadFreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.gz
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.bz2
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.zip
5.13
Diffstat (limited to 'lib/perf_check.h')
-rw-r--r--lib/perf_check.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/perf_check.h b/lib/perf_check.h
index f314f842..3e04b778 100644
--- a/lib/perf_check.h
+++ b/lib/perf_check.h
@@ -8,7 +8,7 @@
#define STATISTICS_H_INCLUDED
#include <map>
-#include <wx/string.h>
+#include <string>
class PerfCheck
{
@@ -19,8 +19,8 @@ public:
void addSample(int objectsCurrent, double dataCurrent, long timeMs); //timeMs must be ascending!
- wxString getRemainingTime(double dataRemaining) const;
- wxString getBytesPerSecond() const; //for window
+ std::wstring getRemainingTime(double dataRemaining) const;
+ std::wstring getBytesPerSecond() const; //for window
private:
const long windowSizeRemTime; //unit: [ms]
bgstack15