summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2012-05-01 18:10:26 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2012-05-01 18:10:26 (GMT)
commit17c65d1c443579dfe684d4b354d74407f3d7dc8e (patch)
tree5c255d322b54f93bc2359b2a2c40f748339a1d3e
parent8df7aa54f0f78d48e4ed91001ac9ac9d39dbf535 (diff)
parent2c050a2e11afe41c89bae8075f8a55bae0e8244e (diff)
downloadCMake-17c65d1c443579dfe684d4b354d74407f3d7dc8e.zip
CMake-17c65d1c443579dfe684d4b354d74407f3d7dc8e.tar.gz
CMake-17c65d1c443579dfe684d4b354d74407f3d7dc8e.tar.bz2
Merge topic 'cmake-gui-thread-wait'
2c050a2 cmake-gui: Wait for configure/generate thread to complete before exiting.
-rw-r--r--Source/QtDialog/CMakeSetupDialog.cxx2
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()