diff options
author | Versus Void <versusvoid@gmail.com> | 2017-10-05 20:01:56 +0000 |
---|---|---|
committer | Versus Void <versusvoid@gmail.com> | 2017-10-05 20:01:56 +0000 |
commit | c5df6ca900cb445b88ede7e0ea3bb3a9042b5b6f (patch) | |
tree | e9919a6c33e5827b53691331e79aa7a5a24524ab /include/rootston | |
parent | edadbc7c7f88670afdbabd05a6027c438415c3db (diff) |
Fix memory leaks
Diffstat (limited to 'include/rootston')
-rw-r--r-- | include/rootston/desktop.h | 1 | ||||
-rw-r--r-- | include/rootston/input.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/rootston/desktop.h b/include/rootston/desktop.h index 91ac87b7..0d641848 100644 --- a/include/rootston/desktop.h +++ b/include/rootston/desktop.h @@ -16,7 +16,6 @@ struct roots_output { struct roots_desktop *desktop; struct wlr_output *wlr_output; struct wl_listener frame; - struct wl_listener resolution; struct timespec last_frame; struct wl_list link; }; diff --git a/include/rootston/input.h b/include/rootston/input.h index 6161eb7a..f7cd2929 100644 --- a/include/rootston/input.h +++ b/include/rootston/input.h @@ -76,6 +76,7 @@ struct roots_input { // TODO: multiseat, multicursor struct wlr_cursor *cursor; + struct wlr_xcursor_theme *theme; struct wlr_xcursor *xcursor; struct wlr_seat *wl_seat; |