summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES1
-rw-r--r--src/Fl.cxx5
-rw-r--r--src/Fl_x.cxx14
3 files changed, 11 insertions, 9 deletions
diff --git a/CHANGES b/CHANGES
index a7da8d353..2edd4d06d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,7 @@
CHANGES IN FLTK 1.1.0rc3
- Documentation updates.
+ - Fixed WM_PAINT handling under WIN32.
- Minor tweeks to MingW and OS/2 config headers.
- Fl_Value_Input now correctly determines if step()
specifies an integer value.
diff --git a/src/Fl.cxx b/src/Fl.cxx
index 6c2dc96a7..75a410194 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl.cxx,v 1.24.2.41.2.32 2002/05/16 07:43:59 spitzak Exp $"
+// "$Id: Fl.cxx,v 1.24.2.41.2.33 2002/05/23 16:47:41 easysw Exp $"
//
// Main event handling code for the Fast Light Tool Kit (FLTK).
//
@@ -802,6 +802,7 @@ int Fl_Window::handle(int event)
}
break;
}
+
return Fl_Group::handle(event);
}
@@ -900,5 +901,5 @@ void Fl_Window::flush() {
}
//
-// End of "$Id: Fl.cxx,v 1.24.2.41.2.32 2002/05/16 07:43:59 spitzak Exp $".
+// End of "$Id: Fl.cxx,v 1.24.2.41.2.33 2002/05/23 16:47:41 easysw Exp $".
//
diff --git a/src/Fl_x.cxx b/src/Fl_x.cxx
index e389088f7..86f346bdb 100644
--- a/src/Fl_x.cxx
+++ b/src/Fl_x.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_x.cxx,v 1.24.2.24.2.19 2002/04/11 11:52:42 easysw Exp $"
+// "$Id: Fl_x.cxx,v 1.24.2.24.2.20 2002/05/23 16:47:41 easysw Exp $"
//
// X specific code for the Fast Light Tool Kit (FLTK).
//
@@ -466,11 +466,11 @@ static void set_event_xy() {
# if CONSOLIDATE_MOTION
send_motion = 0;
# endif
- Fl::e_x_root = fl_xevent->xbutton.x_root;
- Fl::e_x = fl_xevent->xbutton.x;
- Fl::e_y_root = fl_xevent->xbutton.y_root;
- Fl::e_y = fl_xevent->xbutton.y;
- Fl::e_state = fl_xevent->xbutton.state << 16;
+ Fl::e_x_root = fl_xevent->xbutton.x_root;
+ Fl::e_x = fl_xevent->xbutton.x;
+ Fl::e_y_root = fl_xevent->xbutton.y_root;
+ Fl::e_y = fl_xevent->xbutton.y;
+ Fl::e_state = fl_xevent->xbutton.state << 16;
fl_event_time = fl_xevent->xbutton.time;
# ifdef __sgi
// get the meta key off PC keyboards:
@@ -1229,5 +1229,5 @@ void Fl_Window::make_current() {
#endif
//
-// End of "$Id: Fl_x.cxx,v 1.24.2.24.2.19 2002/04/11 11:52:42 easysw Exp $".
+// End of "$Id: Fl_x.cxx,v 1.24.2.24.2.20 2002/05/23 16:47:41 easysw Exp $".
//