diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-05-12 17:52:51 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-12 17:52:51 +1000 |
commit | 4717c71da54a45f736bdfde04ee3f0db88918799 (patch) | |
tree | fa511907ae4ca82d8ca68cc3a2be254359af091f /sway/desktop/xdg_shell_v6.c | |
parent | 935bda0f336bb9ca45a7fb96d7ed5f08ef04432f (diff) | |
parent | 2511adffc29996b64d01d85b3de31de9a2af9096 (diff) |
Merge branch 'master' into fix-crash-on-fullscreen
Diffstat (limited to 'sway/desktop/xdg_shell_v6.c')
-rw-r--r-- | sway/desktop/xdg_shell_v6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c index 8ecb330d..f685ef71 100644 --- a/sway/desktop/xdg_shell_v6.c +++ b/sway/desktop/xdg_shell_v6.c @@ -80,7 +80,7 @@ static struct sway_xdg_shell_v6_view *xdg_shell_v6_view_from_view( return (struct sway_xdg_shell_v6_view *)view; } -static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) { +static const char *get_string_prop(struct sway_view *view, enum sway_view_prop prop) { if (xdg_shell_v6_view_from_view(view) == NULL) { return NULL; } @@ -158,7 +158,7 @@ static void destroy(struct sway_view *view) { } static const struct sway_view_impl view_impl = { - .get_prop = get_prop, + .get_string_prop = get_string_prop, .configure = configure, .set_activated = set_activated, .set_fullscreen = set_fullscreen, |