From 2f2ce22e35f27fac88bdba5ed5081b59b55fb78b Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Fri, 4 Mar 2011 15:00:51 +0100 Subject: [PATCH] Clarified function name. --- src/x11/x11_window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x11/x11_window.c b/src/x11/x11_window.c index afa5b7aa..d2b629c8 100644 --- a/src/x11/x11_window.c +++ b/src/x11/x11_window.c @@ -134,7 +134,7 @@ static Atom getSupportedAtom(Atom* supportedAtoms, // Check whether the running window manager is EWMH-compliant //======================================================================== -static GLboolean checkForEWMH(_GLFWwindow* window) +static GLboolean hasEWMH(_GLFWwindow* window) { Window* windowFromRoot = NULL; Window* windowFromChild = NULL; @@ -685,7 +685,7 @@ static GLboolean createWindow(_GLFWwindow* window, } // Check whether an EWMH-compliant window manager is running - window->X11.hasEWMH = checkForEWMH(window); + window->X11.hasEWMH = hasEWMH(window); if (window->mode == GLFW_FULLSCREEN && !window->X11.hasEWMH) {