mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-02-22 04:30:36 +01:00
Change return FALSE to break... FALSE means that the clipboard thread
should shutdown.
This commit is contained in:
parent
cab39b481c
commit
4cc6355ace
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue