summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2012-04-30 19:12:16 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2012-04-30 19:12:16 (GMT)
commit2c050a2e11afe41c89bae8075f8a55bae0e8244e (patch)
tree845d1b8a370289d8eaab7a7345052cca9fb6e1f3 /Source/QtDialog
parent711f3ccb0400ecede1d5ccc100f017bbb3475d31 (diff)
downloadCMake-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.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()