summaryrefslogtreecommitdiff
path: root/library/multithreading.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/multithreading.cpp')
-rw-r--r--library/multithreading.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/library/multithreading.cpp b/library/multithreading.cpp
index 899a426b..aea4821b 100644
--- a/library/multithreading.cpp
+++ b/library/multithreading.cpp
@@ -40,12 +40,12 @@ class WorkerThread : public wxThread
public:
WorkerThread(UpdateWhileExecuting* handler) :
- wxThread(wxTHREAD_DETACHED),
- readyToBeginProcessing(),
- beginProcessing(readyToBeginProcessing),
- threadIsInitialized(false),
- threadExitIsRequested(false),
- threadHandler(handler)
+ wxThread(wxTHREAD_DETACHED),
+ readyToBeginProcessing(),
+ beginProcessing(readyToBeginProcessing),
+ threadIsInitialized(false),
+ threadExitIsRequested(false),
+ threadHandler(handler)
{ }
@@ -93,9 +93,9 @@ private:
UpdateWhileExecuting::UpdateWhileExecuting() :
- readyToReceiveResult(),
- receivingResult(readyToReceiveResult),
- workDone(false)
+ readyToReceiveResult(),
+ receivingResult(readyToReceiveResult),
+ workDone(false)
{
//mutex needs to be initially locked for condition receivingResult to work properly
readyToReceiveResult.Lock();
bgstack15