summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Fl_cutpaste_win32.cxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/Fl_cutpaste_win32.cxx b/src/Fl_cutpaste_win32.cxx
index 52715055e..28f8365a6 100644
--- a/src/Fl_cutpaste_win32.cxx
+++ b/src/Fl_cutpaste_win32.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.1 1999/05/15 14:31:32 mike Exp $"
+// "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.2 1999/06/12 13:04:15 mike Exp $"
//
// WIN32 cut/paste for the Fast Light Tool Kit (FLTK).
//
@@ -47,7 +47,12 @@ static int selection_xevent_handler(int) {
switch (fl_msg.message) {
case WM_DESTROYCLIPBOARD:
- if (fl_msg.hwnd != fl_xid(Fl::first_window())) {
+ Fl_Window *w = Fl::first_window();
+ while (w != (Fl_Window *)0)
+ if (fl_msg.hwnd == fl_xid(w)) break;
+ else w = Fl::next_window(w);
+
+ if (w == (Fl_Window *)0) {
Fl::selection_owner(0);
Fl::flush(); // get the redraw to happen
}
@@ -132,5 +137,5 @@ void Fl::paste(Fl_Widget &receiver) {
}
//
-// End of "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.1 1999/05/15 14:31:32 mike Exp $".
+// End of "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.2 1999/06/12 13:04:15 mike Exp $".
//