aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-11-21 22:29:36 +0100
committerGitHub <noreply@github.com>2018-11-21 22:29:36 +0100
commit42e8e3ed0aa6b5dff3a40b5d0d8706cff5039644 (patch)
tree36c8f15602d74648c0630453365b9e738b56fe37 /include/wlr
parentb20f4cd49526acfc83e4860114d89075d0295828 (diff)
parenteaafd65a12d6b15cc8e503ef6e9e99a65bd1e791 (diff)
Merge pull request #1380 from emersion/gtk-primary-selection-multiple-devices
gtk-primary-selection: support multiple devices
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_primary_selection.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/wlr/types/wlr_primary_selection.h b/include/wlr/types/wlr_primary_selection.h
index f33f6368..192bfc02 100644
--- a/include/wlr/types/wlr_primary_selection.h
+++ b/include/wlr/types/wlr_primary_selection.h
@@ -14,6 +14,7 @@
struct wlr_primary_selection_device_manager {
struct wl_global *global;
+ struct wl_list resources;
struct wl_listener display_destroy;
@@ -24,8 +25,6 @@ struct wlr_primary_selection_device_manager {
void *data;
};
-struct wlr_primary_selection_offer;
-
struct wlr_primary_selection_source {
// source metadata
struct wl_array mime_types;
@@ -36,7 +35,6 @@ struct wlr_primary_selection_source {
void (*cancel)(struct wlr_primary_selection_source *source);
// source status
- struct wlr_primary_selection_offer *offer;
struct wlr_seat_client *seat_client;
struct {