From 1421bca4a7cd432dde40b31c6ae5954192721b3e Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Wed, 22 Jun 2005 08:50:07 +0000 Subject: [PATCH] Comment typo and return handled status in handle_selection() --- BasiliskII/src/Unix/clip_unix.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BasiliskII/src/Unix/clip_unix.cpp b/BasiliskII/src/Unix/clip_unix.cpp index 85bf6d08..6fce680c 100644 --- a/BasiliskII/src/Unix/clip_unix.cpp +++ b/BasiliskII/src/Unix/clip_unix.cpp @@ -240,7 +240,7 @@ static bool read_property(Display *dpy, Window win, /* - * Timed wait for an SelectionNotify event + * Timed wait for a SelectionNotify event */ static const uint64 SELECTION_MAX_WAIT = 500000; // 500 ms @@ -662,6 +662,8 @@ static bool handle_selection(XSelectionRequestEvent *req, bool is_multiple) out_event.xselection.time = req->time; XSendEvent(x_display, req->requestor, False, 0, &out_event); } + + return handled; } void ClipboardSelectionRequest(XSelectionRequestEvent *req)