diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-13 20:29:26 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-13 20:29:26 (GMT) |
commit | 7c73456401724698a1a4675d475d953d17558911 (patch) | |
tree | 1ee8143deb06f712f0dfdc375e375e4bb7e5b99d /Source/MFCDialog/CMakeSetup.cpp | |
parent | 6349735590508504435612e36b48d782e9d068e6 (diff) | |
download | CMake-7c73456401724698a1a4675d475d953d17558911.zip CMake-7c73456401724698a1a4675d475d953d17558911.tar.gz CMake-7c73456401724698a1a4675d475d953d17558911.tar.bz2 |
Remove warnings
Diffstat (limited to 'Source/MFCDialog/CMakeSetup.cpp')
-rw-r--r-- | Source/MFCDialog/CMakeSetup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/MFCDialog/CMakeSetup.cpp b/Source/MFCDialog/CMakeSetup.cpp index 6cf1bc1..e0661a0 100644 --- a/Source/MFCDialog/CMakeSetup.cpp +++ b/Source/MFCDialog/CMakeSetup.cpp @@ -63,7 +63,7 @@ BOOL CMakeSetup::InitInstance() CMakeSetupDialog dlg(cmdInfo); m_pMainWnd = &dlg; - int nResponse = dlg.DoModal(); + INT_PTR nResponse = dlg.DoModal(); if (nResponse == IDOK) { // TODO: Place code here to handle when the dialog is |