X11: isConfigureNotify() isn't used at the moment, comment it out.

This commit is contained in:
Ryan C. Gordon 2015-08-13 17:37:09 -04:00
parent 8a1fd98261
commit da6f2221e3
1 changed files with 2 additions and 2 deletions

View File

@ -54,12 +54,12 @@ static Bool isUnmapNotify(Display *dpy, XEvent *ev, XPointer win)
{
return ev->type == UnmapNotify && ev->xunmap.window == *((Window*)win);
}
/*
static Bool isConfigureNotify(Display *dpy, XEvent *ev, XPointer win)
{
return ev->type == ConfigureNotify && ev->xconfigure.window == *((Window*)win);
}
/*
static Bool
X11_XIfEventTimeout(Display *display, XEvent *event_return, Bool (*predicate)(), XPointer arg, int timeoutMS)
{