summaryrefslogtreecommitdiff
path: root/src/Fl.cxx
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>1999-05-06 06:20:47 +0000
committerBill Spitzak <spitzak@gmail.com>1999-05-06 06:20:47 +0000
commitc025851f8327bf8856f9e121571dd1647f68fb7f (patch)
tree9039b5d0d9207cf5a279af3bbb1434dc5199ae5c /src/Fl.cxx
parent72a313292c0b0783a7fc92544d4fa805d613d3a6 (diff)
Fixed another flwm crash in Fl_x.cxx (the send_motion pointer must
be ignored if the fl_xmousewin is deleted). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@577 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl.cxx')
-rw-r--r--src/Fl.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index 6477fc92a..22935aab2 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl.cxx,v 1.24.2.5 1999/04/23 06:55:52 bill Exp $"
+// "$Id: Fl.cxx,v 1.24.2.6 1999/05/06 06:20:46 bill Exp $"
//
// Main event handling code for the Fast Light Tool Kit (FLTK).
//
@@ -564,8 +564,6 @@ void Fl_Window::hide() {
}
// Make sure no events are sent to this window:
- if (this == fl_xmousewin) fl_xmousewin = 0;
- if (this == fl_xfocus) fl_xfocus = 0;
fl_throw_focus(this);
handle(FL_HIDE);
@@ -698,5 +696,5 @@ int fl_old_shortcut(const char* s) {
}
//
-// End of "$Id: Fl.cxx,v 1.24.2.5 1999/04/23 06:55:52 bill Exp $".
+// End of "$Id: Fl.cxx,v 1.24.2.6 1999/05/06 06:20:46 bill Exp $".
//