diff options
Diffstat (limited to 'library/multithreading.cpp')
-rw-r--r-- | library/multithreading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/multithreading.cpp b/library/multithreading.cpp index 099836de..bb598194 100644 --- a/library/multithreading.cpp +++ b/library/multithreading.cpp @@ -144,7 +144,7 @@ void UpdateWhileExecuting::execute(StatusUpdater* statusUpdater) theWorkerThread->beginProcessing.Signal(); theWorkerThread->readyToBeginProcessing.Unlock(); - while (receivingResult.WaitTimeout(uiUpdateInterval) == wxCOND_TIMEOUT) + while (receivingResult.WaitTimeout(UI_UPDATE_INTERVAL) == wxCOND_TIMEOUT) statusUpdater->triggerUI_Refresh(); //ATTENTION: Exception "AbortThisProcess" may be thrown here!!! } |