aboutsummaryrefslogtreecommitdiff
path: root/rootston/wl_shell.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-09-30 13:29:31 -0400
committerTony Crisci <tony@dubstepdish.com>2017-09-30 13:29:31 -0400
commit8f41c497a71ab0ca7fec96957d109b3b0adb702e (patch)
treead474de0998ca3468bbdb1f710205e515dfcd402 /rootston/wl_shell.c
parent8b7ae61ad4e8c991982cb15d46687ffbe6168530 (diff)
parent5944505af66a8cc1c23158541d4d533a0d693b9d (diff)
Merge branch 'master' into feature/subcompositor
Diffstat (limited to 'rootston/wl_shell.c')
-rw-r--r--rootston/wl_shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/wl_shell.c b/rootston/wl_shell.c
index 4189e910..d70f59f2 100644
--- a/rootston/wl_shell.c
+++ b/rootston/wl_shell.c
@@ -10,7 +10,7 @@
#include "rootston/server.h"
#include "rootston/input.h"
-static void handle_move(struct wl_listener *listener, void *data) {
+static void handle_request_move(struct wl_listener *listener, void *data) {
struct roots_wl_shell_surface *roots_surface =
wl_container_of(listener, roots_surface, request_move);
struct roots_view *view = roots_surface->view;
@@ -53,7 +53,7 @@ void handle_wl_shell_surface(struct wl_listener *listener, void *data) {
wl_signal_add(&surface->events.destroy, &roots_surface->destroy);
wl_list_init(&roots_surface->ping_timeout.link);
wl_list_init(&roots_surface->request_move.link);
- roots_surface->request_move.notify = handle_move;
+ roots_surface->request_move.notify = handle_request_move;
wl_signal_add(&surface->events.request_move, &roots_surface->request_move);
wl_list_init(&roots_surface->request_resize.link);
wl_list_init(&roots_surface->request_set_fullscreen.link);