mirror of https://github.com/encounter/SDL.git
X11: isConfigureNotify() isn't used at the moment, comment it out.
This commit is contained in:
parent
8a1fd98261
commit
da6f2221e3
|
@ -54,12 +54,12 @@ static Bool isUnmapNotify(Display *dpy, XEvent *ev, XPointer win)
|
||||||
{
|
{
|
||||||
return ev->type == UnmapNotify && ev->xunmap.window == *((Window*)win);
|
return ev->type == UnmapNotify && ev->xunmap.window == *((Window*)win);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
static Bool isConfigureNotify(Display *dpy, XEvent *ev, XPointer win)
|
static Bool isConfigureNotify(Display *dpy, XEvent *ev, XPointer win)
|
||||||
{
|
{
|
||||||
return ev->type == ConfigureNotify && ev->xconfigure.window == *((Window*)win);
|
return ev->type == ConfigureNotify && ev->xconfigure.window == *((Window*)win);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
static Bool
|
static Bool
|
||||||
X11_XIfEventTimeout(Display *display, XEvent *event_return, Bool (*predicate)(), XPointer arg, int timeoutMS)
|
X11_XIfEventTimeout(Display *display, XEvent *event_return, Bool (*predicate)(), XPointer arg, int timeoutMS)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue