summaryrefslogtreecommitdiff
path: root/library/status_handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/status_handler.cpp')
-rw-r--r--library/status_handler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/status_handler.cpp b/library/status_handler.cpp
index e81746a4..0a131899 100644
--- a/library/status_handler.cpp
+++ b/library/status_handler.cpp
@@ -21,8 +21,8 @@ void updateUiNow()
bool updateUiIsAllowed()
{
- static wxLongLong lastExec = 0;
- const wxLongLong newExec = wxGetLocalTimeMillis();
+ static wxMilliClock_t lastExec = 0;
+ const wxMilliClock_t newExec = wxGetLocalTimeMillis();
if (newExec - lastExec >= UI_UPDATE_INTERVAL) //perform ui updates not more often than necessary
{
bgstack15