diff options
author | Timothy Pearson <[email protected]> | 2013-05-14 19:34:10 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-05-14 19:34:10 -0500 |
commit | 4eba9b823832a5bab1acffeabc245b06fe113d75 (patch) | |
tree | 9ec81ead726a66066c6450c805beb8e233391a65 /tutorial/t15 | |
parent | be8413249bb8a6d8dc2cfc693d9c1037284fd251 (diff) | |
download | qt3-4eba9b823832a5bab1acffeabc245b06fe113d75.tar.gz qt3-4eba9b823832a5bab1acffeabc245b06fe113d75.zip |
Fix a number of threading data races
Add proper thread termination handler
This partially resolves Bug 1508
Diffstat (limited to 'tutorial/t15')
-rw-r--r-- | tutorial/t15/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tutorial/t15/main.cpp b/tutorial/t15/main.cpp index 4c96083..61febaa 100644 --- a/tutorial/t15/main.cpp +++ b/tutorial/t15/main.cpp @@ -33,6 +33,8 @@ void WorkerObject::run() eventLoop->processEvents(QEventLoop::AllEvents); } + delete t; + eventLoop->exit(0); } |