Remove two unused variables, causing compiler warnings.
parent
b0502ce831
commit
2298ed170f
|
@ -560,9 +560,7 @@ X11_DispatchEvent(_THIS)
|
||||||
xevent.xconfigure.width, xevent.xconfigure.height);
|
xevent.xconfigure.width, xevent.xconfigure.height);
|
||||||
#endif
|
#endif
|
||||||
long border_left = 0;
|
long border_left = 0;
|
||||||
long border_right = 0;
|
|
||||||
long border_top = 0;
|
long border_top = 0;
|
||||||
long border_bottom = 0;
|
|
||||||
if (data->xwindow) {
|
if (data->xwindow) {
|
||||||
Atom _net_frame_extents = X11_XInternAtom(display, "_NET_FRAME_EXTENTS", 0);
|
Atom _net_frame_extents = X11_XInternAtom(display, "_NET_FRAME_EXTENTS", 0);
|
||||||
Atom type = None;
|
Atom type = None;
|
||||||
|
@ -577,9 +575,7 @@ X11_DispatchEvent(_THIS)
|
||||||
if (type != None && nitems == 4)
|
if (type != None && nitems == 4)
|
||||||
{
|
{
|
||||||
border_left = ((long*)property)[0];
|
border_left = ((long*)property)[0];
|
||||||
border_right = ((long*)property)[1];
|
|
||||||
border_top = ((long*)property)[2];
|
border_top = ((long*)property)[2];
|
||||||
border_bottom = ((long*)property)[3];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue