diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-19 14:18:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-19 14:18:05 +0200 |
commit | ac26d23711cbfe78ca392d14fa439a0e8f660884 (patch) | |
tree | 2c827c70b22f79b09e9b4ba8ab08f289335fe88e /include | |
parent | 6730f5ba93577d0d1d466063e84aeae9a45355fb (diff) | |
parent | f44003f04bcffcaa64d811a45efea569c0dee23e (diff) |
Merge pull request #1287 from emersion/source-seat-client
data-device: remove wlr_data_source.seat_client
Diffstat (limited to 'include')
-rw-r--r-- | include/types/wlr_data_device.h | 1 | ||||
-rw-r--r-- | include/wlr/types/wlr_data_device.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/types/wlr_data_device.h b/include/types/wlr_data_device.h index 972294ff..388e91a5 100644 --- a/include/types/wlr_data_device.h +++ b/include/types/wlr_data_device.h @@ -11,6 +11,7 @@ struct wlr_client_data_source { struct wlr_data_source source; struct wlr_data_source_impl impl; struct wl_resource *resource; + bool finalized; }; extern const struct wlr_surface_role drag_icon_surface_role; diff --git a/include/wlr/types/wlr_data_device.h b/include/wlr/types/wlr_data_device.h index c45e8d1c..9ce8f400 100644 --- a/include/wlr/types/wlr_data_device.h +++ b/include/wlr/types/wlr_data_device.h @@ -73,7 +73,6 @@ struct wlr_data_source { // source status bool accepted; struct wlr_data_offer *offer; - struct wlr_seat_client *seat_client; // drag'n'drop status enum wl_data_device_manager_dnd_action current_dnd_action; |