diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-27 21:59:38 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-27 22:02:00 +1000 |
commit | d3dd7e5bae374cb890f80836d872229a37ef639f (patch) | |
tree | f96102bdb4bbc030a9e7033b13178acf74413bea /sway/criteria.c | |
parent | 484cc189e909e6b8df42e80386e0335d6d317a6e (diff) |
Rename view_get_type to view_get_shell
Diffstat (limited to 'sway/criteria.c')
-rw-r--r-- | sway/criteria.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/criteria.c b/sway/criteria.c index 9317a180..dec5fed7 100644 --- a/sway/criteria.c +++ b/sway/criteria.c @@ -56,7 +56,7 @@ static bool criteria_matches_view(struct criteria *criteria, } if (criteria->shell) { - const char *shell = view_get_type(view); + const char *shell = view_get_shell(view); if (!shell || regex_cmp(shell, criteria->shell) != 0) { return false; } @@ -284,7 +284,7 @@ static char *get_focused_prop(enum criteria_token token) { value = view_get_instance(view); break; case T_SHELL: - value = view_get_type(view); + value = view_get_shell(view); break; case T_TITLE: value = view_get_class(view); |