From d6e0e0de2b1dc0f2a4e545f0f534c50ce3f30763 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 30 Mar 2014 12:23:39 +0200 Subject: [PATCH] Formatting. --- src/x11_clipboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x11_clipboard.c b/src/x11_clipboard.c index e42d1b8d..ba950243 100644 --- a/src/x11_clipboard.c +++ b/src/x11_clipboard.c @@ -34,7 +34,7 @@ // Returns whether the event is a selection event // -static Bool isSelectionMessage(Display* display, XEvent* event, XPointer pointer) +static Bool isSelectionEvent(Display* display, XEvent* event, XPointer pointer) { return event->type == SelectionRequest || event->type == SelectionNotify || @@ -216,7 +216,7 @@ void _glfwPushSelectionToManager(_GLFWwindow* window) { XEvent event; - if (!XCheckIfEvent(_glfw.x11.display, &event, isSelectionMessage, NULL)) + if (!XCheckIfEvent(_glfw.x11.display, &event, isSelectionEvent, NULL)) continue; switch (event.type)