aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Clipboard.c')
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Clipboard.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c
index 8872291fd..4baec7273 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c
@@ -1606,19 +1606,7 @@ void nxagentHandleSelectionNotifyFromXServer(XEvent *X)
#endif
/* determine the selection we are talking about here */
- int index = 0;
- for (index = 0; index < nxagentMaxSelections; index++)
- {
- #ifdef DEBUG
- fprintf (stderr, "%s: index [%d] selAtom [%ld] remselection [%ld] .\n",
- __func__, index, remSelAtoms[index], e->selection);
- #endif
- if (remSelAtoms[index] == e->selection)
- {
- break;
- }
- }
-
+ int index = nxagentFindLastSelectionOwnerIndex(e->selection);
if (index == nxagentMaxSelections)
{
#ifdef DEBUG