aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop/wl_shell.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-05-11 20:39:43 -0400
committerGitHub <noreply@github.com>2018-05-11 20:39:43 -0400
commit3e1bf721c69cb6df70c3dc3d3d4933e987339676 (patch)
tree850a10903fc975d643cee28307aa35e7523ba0bc /sway/desktop/wl_shell.c
parent2217518bd554d0f11dafa7ec4e8f35f2e4762fbd (diff)
parent8595fc5a6f81f00ab62bfea127f8fad5c0b249de (diff)
Merge pull request #1943 from RyanDwyer/criteria-improvements
Overhaul criteria implementation
Diffstat (limited to 'sway/desktop/wl_shell.c')
-rw-r--r--sway/desktop/wl_shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/wl_shell.c b/sway/desktop/wl_shell.c
index 99e8947b..cb3774f7 100644
--- a/sway/desktop/wl_shell.c
+++ b/sway/desktop/wl_shell.c
@@ -20,7 +20,7 @@ static struct sway_wl_shell_view *wl_shell_view_from_view(
return (struct sway_wl_shell_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 (wl_shell_view_from_view(view) == NULL) {
return NULL;
}
@@ -70,7 +70,7 @@ static void set_fullscreen(struct sway_view *view, bool fullscreen) {
}
static const struct sway_view_impl view_impl = {
- .get_prop = get_prop,
+ .get_string_prop = get_string_prop,
.configure = configure,
.close = _close,
.destroy = destroy,