diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-05 13:08:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-05 13:08:18 -0400 |
commit | cec012019f6146b1376bb787dc96b73c7de82266 (patch) | |
tree | 383ea29795a696159cc35dfc9b30cfd251742895 /include | |
parent | 77eae178c725d13fee4862718af2a3029b128f41 (diff) | |
parent | c5df6ca900cb445b88ede7e0ea3bb3a9042b5b6f (diff) |
Merge pull request #208 from versusvoid/memory
Fix memory leaks
Diffstat (limited to 'include')
-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; |