From: Rémi Bernon rbernon@codeweavers.com
--- dlls/winex11.drv/event.c | 1 - dlls/winex11.drv/window.c | 5 ----- 2 files changed, 6 deletions(-)
diff --git a/dlls/winex11.drv/event.c b/dlls/winex11.drv/event.c index 35a51c00700..9deccc2acfc 100644 --- a/dlls/winex11.drv/event.c +++ b/dlls/winex11.drv/event.c @@ -258,7 +258,6 @@ static void xembed_request_focus( Display *display, Window window, DWORD timesta xev.xclient.data.l[4] = 0;
XSendEvent(display, window, False, NoEventMask, &xev); - XFlush( display ); }
/*********************************************************************** diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c index 2e6f13eec53..1e006324a54 100644 --- a/dlls/winex11.drv/window.c +++ b/dlls/winex11.drv/window.c @@ -1333,8 +1333,6 @@ static void window_set_net_wm_state( struct x11drv_win_data *data, UINT new_stat SubstructureRedirectMask | SubstructureNotifyMask, &xev ); } } - - XFlush( data->display ); }
static void window_set_config( struct x11drv_win_data *data, RECT rect, BOOL above ) @@ -1582,8 +1580,6 @@ static void window_set_wm_state( struct x11drv_win_data *data, UINT new_state, B
/* override redirect windows won't receive WM_STATE property changes */ if (!data->managed) data->wm_state_serial = 0; - - XFlush( data->display ); }
static void window_set_managed( struct x11drv_win_data *data, BOOL new_managed ) @@ -1972,7 +1968,6 @@ void set_net_active_window( HWND hwnd, HWND previous ) TRACE( "requesting _NET_ACTIVE_WINDOW %p/%lx serial %lu\n", hwnd, window, data->net_active_window_serial ); XSendEvent( data->display, DefaultRootWindow( data->display ), False, SubstructureRedirectMask | SubstructureNotifyMask, &xev ); - XFlush( data->display ); }
BOOL window_is_reparenting( HWND hwnd )