summaryrefslogtreecommitdiffstats
path: root/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx
diff options
context:
space:
mode:
authorLuis Ibanez <luis.ibanez@kitware.com>2001-06-11 06:10:31 (GMT)
committerLuis Ibanez <luis.ibanez@kitware.com>2001-06-11 06:10:31 (GMT)
commitdc8d8fbc006a97561e8c3cfe825af3689870c2ea (patch)
tree0a4204fa0e111061a91360fa87d123d996648ff3 /Source/FLTKDialog/CMakeSetupGUIImplementation.cxx
parent7a9ab85304015a576a39198a444dc9ad8525f6aa (diff)
downloadCMake-dc8d8fbc006a97561e8c3cfe825af3689870c2ea.zip
CMake-dc8d8fbc006a97561e8c3cfe825af3689870c2ea.tar.gz
CMake-dc8d8fbc006a97561e8c3cfe825af3689870c2ea.tar.bz2
ENH: Waiting cursor color were reversed
Diffstat (limited to 'Source/FLTKDialog/CMakeSetupGUIImplementation.cxx')
-rw-r--r--Source/FLTKDialog/CMakeSetupGUIImplementation.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx b/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx
index c07298a..4f5d0b4 100644
--- a/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx
+++ b/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx
@@ -237,7 +237,7 @@ CMakeSetupGUIImplementation
SaveCacheFromGUI();
// set the wait cursor
- fl_cursor(FL_CURSOR_WAIT,FL_WHITE,FL_BLACK);
+ fl_cursor(FL_CURSOR_WAIT,FL_BLACK,FL_WHITE);
// get all the info from the dialog
// this->UpdateData();
if(!m_BuildPathChanged)
@@ -272,7 +272,7 @@ CMakeSetupGUIImplementation
// path is up-to-date now
m_BuildPathChanged = false;
// put the cursor back
- fl_cursor(FL_CURSOR_DEFAULT,FL_WHITE,FL_BLACK);
+ fl_cursor(FL_CURSOR_DEFAULT,FL_BLACK,FL_WHITE);
fl_message("Done !");
}