diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2012-04-30 19:12:16 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2012-04-30 19:12:16 (GMT) |
commit | 2c050a2e11afe41c89bae8075f8a55bae0e8244e (patch) | |
tree | 845d1b8a370289d8eaab7a7345052cca9fb6e1f3 /Source/QtDialog | |
parent | 711f3ccb0400ecede1d5ccc100f017bbb3475d31 (diff) | |
download | CMake-2c050a2e11afe41c89bae8075f8a55bae0e8244e.zip CMake-2c050a2e11afe41c89bae8075f8a55bae0e8244e.tar.gz CMake-2c050a2e11afe41c89bae8075f8a55bae0e8244e.tar.bz2 |
cmake-gui: Wait for configure/generate thread to complete before exiting.
A prevous fix to interrupt granularity makes it so we don't have to wait very long.
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/CMakeSetupDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx index 45b4cd3..5cd4f29 100644 --- a/Source/QtDialog/CMakeSetupDialog.cxx +++ b/Source/QtDialog/CMakeSetupDialog.cxx @@ -288,7 +288,7 @@ CMakeSetupDialog::~CMakeSetupDialog() // wait for thread to stop this->CMakeThread->quit(); - this->CMakeThread->wait(2000); + this->CMakeThread->wait(); } bool CMakeSetupDialog::prepareConfigure() |