diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-07-24 20:46:33 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-07-24 20:46:33 (GMT) |
commit | ac1112ad06eea51d0ce9b02cdd3c5a8bda8b3db0 (patch) | |
tree | c5d06bdd7924d5a0866261354d9743c493dd2571 /Source/MFCDialog/CMakeSetupDialog.cpp | |
parent | 1f2c84f2844067e83dfeea7d728fbc4e44c70547 (diff) | |
download | CMake-ac1112ad06eea51d0ce9b02cdd3c5a8bda8b3db0.zip CMake-ac1112ad06eea51d0ce9b02cdd3c5a8bda8b3db0.tar.gz CMake-ac1112ad06eea51d0ce9b02cdd3c5a8bda8b3db0.tar.bz2 |
BUG: fix on scroll with buttons
Diffstat (limited to 'Source/MFCDialog/CMakeSetupDialog.cpp')
-rw-r--r-- | Source/MFCDialog/CMakeSetupDialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/MFCDialog/CMakeSetupDialog.cpp b/Source/MFCDialog/CMakeSetupDialog.cpp index cf22c10..d9ca2de 100644 --- a/Source/MFCDialog/CMakeSetupDialog.cpp +++ b/Source/MFCDialog/CMakeSetupDialog.cpp @@ -406,7 +406,8 @@ void CMakeSetupDialog::OnBuildProjects() } } // set the wait cursor - ::SetCursor(LoadCursor(NULL, IDC_WAIT)); + ::SetCursor(LoadCursor(NULL, IDC_WAIT)); + // get all the info from the dialog this->UpdateData(); if(!m_BuildPathChanged) |