From 1af67b4df234cb1a702554289d4319f904aaef31 Mon Sep 17 00:00:00 2001 From: Ulrich Sibiller Date: Wed, 10 Oct 2018 00:26:54 +0200 Subject: Clipboard.c: GetWindowProperty() does not return BadMatch --- nx-X11/programs/Xserver/hw/nxagent/Clipboard.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'nx-X11/programs/Xserver/hw/nxagent') diff --git a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c index a4a44f2c2..9cf541e9a 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c @@ -1092,8 +1092,7 @@ void nxagentNotifySelection(XEvent *X) fprintf(stderr, "%s: GetWindowProperty() returned [%s]\n", __func__, GetXErrorString(result)); #endif if (result == BadAlloc || result == BadAtom || - result == BadMatch || result == BadValue || - result == BadWindow) + result == BadWindow || result == BadValue) { fprintf (stderr, "Client GetProperty failed. Error = %s", GetXErrorString(result)); lastServerProperty = None; @@ -1109,11 +1108,9 @@ void nxagentNotifySelection(XEvent *X) #endif if (result == BadAlloc || result == BadAtom || - result == BadMatch || result == BadValue || - result == BadWindow) + result == BadWindow || result == BadValue) { fprintf (stderr, "SelectionNotify - XChangeProperty failed. Error = %s\n", GetXErrorString(result)); - lastServerProperty = None; } else -- cgit v1.2.3