From 4cc6355ace5366a93136aa22257a1043dfb496b6 Mon Sep 17 00:00:00 2001 From: Harold L Hunt II Date: Thu, 8 Jan 2004 06:37:44 +0000 Subject: [PATCH] Change return FALSE to break... FALSE means that the clipboard thread should shutdown. --- hw/xwin/winclipboardxevents.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/xwin/winclipboardxevents.c b/hw/xwin/winclipboardxevents.c index 7b40aa783..9099a5270 100644 --- a/hw/xwin/winclipboardxevents.c +++ b/hw/xwin/winclipboardxevents.c @@ -377,7 +377,7 @@ winClipboardFlushXEvents (HWND hwnd, ErrorF ("winClipboardFlushXEvents - SelectionNotify - " "XA_STRING\n"); #endif - return FALSE; + break; } else if (event.xselection.target == atomUTF8String) { @@ -400,7 +400,7 @@ winClipboardFlushXEvents (HWND hwnd, /* Process the ConvertSelection event */ XFlush (pDisplay); - return FALSE; + break; } else if (event.xselection.target == atomCompoundText) { @@ -423,13 +423,13 @@ winClipboardFlushXEvents (HWND hwnd, /* Process the ConvertSelection event */ XFlush (pDisplay); - return FALSE; + break; } else { ErrorF ("winClipboardFlushXEvents - SelectionNotify - " "Unknown format. Cannot request conversion.\n"); - return FALSE; + break; } }