diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-05-01 15:08:22 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-05-01 15:08:22 +0000 |
| commit | 2f942e1c4a049cc64aa1ddd49dd87f0f011c8b37 (patch) | |
| tree | c7906d426847a6d364dc9d20f0d81c3571563fc9 /src/Fl_x.cxx | |
| parent | 5c3e88c386ff80b96688b45c2806524273109b5b (diff) | |
Updated version numbers to 1.0.3.
Fixed browser bug in item_width() - would read past the end of the string
under certain circumstances.
Fixed browser resize bug - wasn't updating bounding box during check, so
it could get in an infinite loop.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@567 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_x.cxx')
| -rw-r--r-- | src/Fl_x.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_x.cxx b/src/Fl_x.cxx index 39c2d07d5..aad54fe2d 100644 --- a/src/Fl_x.cxx +++ b/src/Fl_x.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_x.cxx,v 1.24.2.4 1999/04/23 06:55:53 bill Exp $" +// "$Id: Fl_x.cxx,v 1.24.2.5 1999/05/01 15:08:22 mike Exp $" // // X specific code for the Fast Light Tool Kit (FLTK). // @@ -158,7 +158,7 @@ int fl_ready() { static Fl_Window* send_motion; #endif static void do_queued_events() { - while (XEventsQueued(fl_display,QueuedAfterReading)) { + while (XEventsQueued(fl_display,QueuedAfterReading)) { XEvent xevent; XNextEvent(fl_display, &xevent); fl_handle(xevent); @@ -865,5 +865,5 @@ void Fl_Window::make_current() { #endif // -// End of "$Id: Fl_x.cxx,v 1.24.2.4 1999/04/23 06:55:53 bill Exp $". +// End of "$Id: Fl_x.cxx,v 1.24.2.5 1999/05/01 15:08:22 mike Exp $". // |
