summaryrefslogtreecommitdiff
path: root/clients
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2014-02-05 21:36:04 -0800
committerKristian Høgsberg <krh@bitplanet.net>2014-02-05 21:37:58 -0800
commit44cd1968f29963f7f511227cd862dd6f9a7e07de (patch)
treed7746521e68520b526464c156ec7439742647fbe /clients
parentab39f4db0f80a8d82b77ddfeb6a253828fc79180 (diff)
downloadweston-44cd1968f29963f7f511227cd862dd6f9a7e07de.tar.gz
xdg-shell: Drop edges arg from xdg_surface configure event
Diffstat (limited to 'clients')
-rw-r--r--clients/window.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/clients/window.c b/clients/window.c
index 7eb2cdcc..2026b6d9 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -3851,12 +3851,10 @@ handle_surface_ping(void *data, struct xdg_surface *xdg_surface, uint32_t serial
static void
handle_surface_configure(void *data, struct xdg_surface *xdg_surface,
- uint32_t edges, int32_t width, int32_t height)
+ int32_t width, int32_t height)
{
struct window *window = data;
- window->resize_edges = edges;
-
window_schedule_resize(window, width, height);
}