Change return FALSE to break... FALSE means that the clipboard thread

should shutdown.
This commit is contained in:
Harold L Hunt II 2004-01-08 06:37:44 +00:00
parent cab39b481c
commit 4cc6355ace

View file

@ -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;
}
}