diff options
author | David Cole <david.cole@kitware.com> | 2012-02-14 21:14:35 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-02-14 21:14:35 (GMT) |
commit | e65f39a59ed45ceb3f0be7f69d26c64677d599cd (patch) | |
tree | ce5104af38d26486b566b9ef411ca239c8cebbd6 /Source/QtDialog/CMakeSetupDialog.cxx | |
parent | 5b016a23d0235a04b463533c1136dfdbc4cc14b4 (diff) | |
parent | 131eed660716a2a8b52a6956f8e8a136425c404e (diff) | |
download | CMake-e65f39a59ed45ceb3f0be7f69d26c64677d599cd.zip CMake-e65f39a59ed45ceb3f0be7f69d26c64677d599cd.tar.gz CMake-e65f39a59ed45ceb3f0be7f69d26c64677d599cd.tar.bz2 |
Merge topic 'interrupt-bug-12649'
131eed6 cmake-gui: Improve interrupt granularity to fix bug 12649.
Diffstat (limited to 'Source/QtDialog/CMakeSetupDialog.cxx')
-rw-r--r-- | Source/QtDialog/CMakeSetupDialog.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx index 338eaff..45b4cd3 100644 --- a/Source/QtDialog/CMakeSetupDialog.cxx +++ b/Source/QtDialog/CMakeSetupDialog.cxx @@ -554,8 +554,7 @@ void CMakeSetupDialog::doHelp() void CMakeSetupDialog::doInterrupt() { this->enterState(Interrupting); - QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(), - "interrupt", Qt::QueuedConnection); + this->CMakeThread->cmakeInstance()->interrupt(); } void CMakeSetupDialog::doSourceBrowse() |