diff options
author | Tony Crisci <[email protected]> | 2018-03-29 14:31:10 -0400 |
---|---|---|
committer | Tony Crisci <[email protected]> | 2018-03-29 14:31:10 -0400 |
commit | 83d09cf5945ba10a703dc5cc977a6d2814f0fd64 (patch) | |
tree | da290b9033e91b295fd01fcf84ca4e74c9a37c1a /include/sway/criteria.h | |
parent | 874f009866abaf8ca43ed4cd88a69d22a3fbfc5a (diff) |
remove swayc_t typedef
Diffstat (limited to 'include/sway/criteria.h')
-rw-r--r-- | include/sway/criteria.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sway/criteria.h b/include/sway/criteria.h index 431cfa3a..ec256ddb 100644 --- a/include/sway/criteria.h +++ b/include/sway/criteria.h @@ -31,12 +31,12 @@ char *extract_crit_tokens(list_t *tokens, const char *criteria); // Returns list of criteria that match given container. These criteria have // been set with `for_window` commands and have an associated cmdlist. -list_t *criteria_for(swayc_t *cont); +list_t *criteria_for(struct sway_container *cont); // Returns a list of all containers that match the given list of tokens. list_t *container_for_crit_tokens(list_t *tokens); // Returns true if any criteria in the given list matches this container -bool criteria_any(swayc_t *cont, list_t *criteria); +bool criteria_any(struct sway_container *cont, list_t *criteria); #endif |