mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-25 14:15:43 +00:00
Patched to compile with -Werror=declaration-after-statement
This commit is contained in:
parent
b29740b88f
commit
84cb232067
|
@ -389,12 +389,12 @@ InitiateWindowMove(_THIS, const SDL_WindowData *data, const SDL_Point *point)
|
||||||
SDL_VideoData *viddata = (SDL_VideoData *) _this->driverdata;
|
SDL_VideoData *viddata = (SDL_VideoData *) _this->driverdata;
|
||||||
SDL_Window* window = data->window;
|
SDL_Window* window = data->window;
|
||||||
Display *display = viddata->display;
|
Display *display = viddata->display;
|
||||||
|
XEvent evt;
|
||||||
|
|
||||||
/* !!! FIXME: we need to regrab this if necessary when the drag is done. */
|
/* !!! FIXME: we need to regrab this if necessary when the drag is done. */
|
||||||
X11_XUngrabPointer(display, 0L);
|
X11_XUngrabPointer(display, 0L);
|
||||||
X11_XFlush(display);
|
X11_XFlush(display);
|
||||||
|
|
||||||
XEvent evt;
|
|
||||||
evt.xclient.type = ClientMessage;
|
evt.xclient.type = ClientMessage;
|
||||||
evt.xclient.window = data->xwindow;
|
evt.xclient.window = data->xwindow;
|
||||||
evt.xclient.message_type = X11_XInternAtom(display, "_NET_WM_MOVERESIZE", True);
|
evt.xclient.message_type = X11_XInternAtom(display, "_NET_WM_MOVERESIZE", True);
|
||||||
|
@ -415,6 +415,7 @@ InitiateWindowResize(_THIS, const SDL_WindowData *data, const SDL_Point *point,
|
||||||
SDL_VideoData *viddata = (SDL_VideoData *) _this->driverdata;
|
SDL_VideoData *viddata = (SDL_VideoData *) _this->driverdata;
|
||||||
SDL_Window* window = data->window;
|
SDL_Window* window = data->window;
|
||||||
Display *display = viddata->display;
|
Display *display = viddata->display;
|
||||||
|
XEvent evt;
|
||||||
|
|
||||||
if (direction < _NET_WM_MOVERESIZE_SIZE_TOPLEFT || direction > _NET_WM_MOVERESIZE_SIZE_LEFT)
|
if (direction < _NET_WM_MOVERESIZE_SIZE_TOPLEFT || direction > _NET_WM_MOVERESIZE_SIZE_LEFT)
|
||||||
return;
|
return;
|
||||||
|
@ -423,7 +424,6 @@ InitiateWindowResize(_THIS, const SDL_WindowData *data, const SDL_Point *point,
|
||||||
X11_XUngrabPointer(display, 0L);
|
X11_XUngrabPointer(display, 0L);
|
||||||
X11_XFlush(display);
|
X11_XFlush(display);
|
||||||
|
|
||||||
XEvent evt;
|
|
||||||
evt.xclient.type = ClientMessage;
|
evt.xclient.type = ClientMessage;
|
||||||
evt.xclient.window = data->xwindow;
|
evt.xclient.window = data->xwindow;
|
||||||
evt.xclient.message_type = X11_XInternAtom(display, "_NET_WM_MOVERESIZE", True);
|
evt.xclient.message_type = X11_XInternAtom(display, "_NET_WM_MOVERESIZE", True);
|
||||||
|
|
Loading…
Reference in a new issue