aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/view.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-26 13:18:33 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-26 13:18:33 +1000
commit50190bc7609d981c45d26cd0b7d6d0fbf66feb05 (patch)
treed3999226eaf620bb729ba2c4b8d284549259ce8b /include/sway/tree/view.h
parentDamage output when a fullscreen view unmaps (diff)
downloadsway-50190bc7609d981c45d26cd0b7d6d0fbf66feb05.tar.gz
sway-50190bc7609d981c45d26cd0b7d6d0fbf66feb05.tar.zst
sway-50190bc7609d981c45d26cd0b7d6d0fbf66feb05.zip
Rename view's free callback to destroy
Diffstat (limited to 'include/sway/tree/view.h')
-rw-r--r--include/sway/tree/view.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 0e6f5292..1bcb0582 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -37,7 +37,7 @@ struct sway_view_impl {
37 void (*for_each_surface)(struct sway_view *view, 37 void (*for_each_surface)(struct sway_view *view,
38 wlr_surface_iterator_func_t iterator, void *user_data); 38 wlr_surface_iterator_func_t iterator, void *user_data);
39 void (*close)(struct sway_view *view); 39 void (*close)(struct sway_view *view);
40 void (*free)(struct sway_view *view); 40 void (*destroy)(struct sway_view *view);
41}; 41};
42 42
43struct sway_view { 43struct sway_view {