diff options
author | Brian Ashworth <RedSoxFan@users.noreply.github.com> | 2018-05-14 09:06:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-14 09:06:23 -0400 |
commit | 9ba0dca7bacb0e79aeac4ea8c605713c69446d9b (patch) | |
tree | 3573981aaa61ac5c86be6ce1e8ecf5e2112b8d5b /sway/desktop/xdg_shell_v6.c | |
parent | 77b42ec8216ec785e3981617c5afbb16c1cd31d7 (diff) | |
parent | 1837756dbed222a6233366f186693e1aeefc2439 (diff) |
Merge branch 'master' into fix-1975
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 e9051b6c..d098c797 100644 --- a/sway/desktop/xdg_shell_v6.c +++ b/sway/desktop/xdg_shell_v6.c @@ -72,7 +72,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; } @@ -150,7 +150,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, |