diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-10-29 15:41:31 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-10-29 15:41:31 (GMT) |
commit | b0e3a2def0c20f20e4cbcf0ff03017777dc1a896 (patch) | |
tree | f9a49e971fc787ba7ba5e02ba950046ab4390731 /Source/FLTKDialog | |
parent | 539318f5875de0c0d0e008f820a3bd721d322f09 (diff) | |
download | CMake-b0e3a2def0c20f20e4cbcf0ff03017777dc1a896.zip CMake-b0e3a2def0c20f20e4cbcf0ff03017777dc1a896.tar.gz CMake-b0e3a2def0c20f20e4cbcf0ff03017777dc1a896.tar.bz2 |
ENH: use callback not ifdef for MFC message box errors
Diffstat (limited to 'Source/FLTKDialog')
-rw-r--r-- | Source/FLTKDialog/CMakeSetupGUIImplementation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx b/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx index dd02b56..6fb3f99 100644 --- a/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx +++ b/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx @@ -17,9 +17,9 @@ void FLTKMessageCallback(const char* message, const char* title, bool& nomore) int ok = fl_ask(message, "Press cancel to suppress any further messages."); if(!ok) - { + { nomore = true; - } + } } /** |