diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-07-04 08:40:49 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-07-12 13:02:42 +0200 |
commit | a756caa1062ef8111321c4bc516136e1ca5aa1cd (patch) | |
tree | 742ef67d3930ceef2f76a497b999c3ce58f85ef3 /gdk/gdkdragprivate.h | |
parent | da22ba3b867ff2a3899ebc791a53a6b2b2e50478 (diff) | |
download | gtk+-a756caa1062ef8111321c4bc516136e1ca5aa1cd.tar.gz |
dnd: Drop suggested_action
The only user of this field was the x11 backend, and it
turns out that it does not need to store the value at all.
Diffstat (limited to 'gdk/gdkdragprivate.h')
-rw-r--r-- | gdk/gdkdragprivate.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdk/gdkdragprivate.h b/gdk/gdkdragprivate.h index 71dca2a888..8aa3f9bf70 100644 --- a/gdk/gdkdragprivate.h +++ b/gdk/gdkdragprivate.h @@ -70,7 +70,6 @@ struct _GdkDrag { GdkDragAction actions; GdkDragAction selected_action; - GdkDragAction suggested_action; guint drop_done : 1; /* Whether gdk_drag_drop_done() was performed */ }; @@ -79,8 +78,6 @@ void gdk_drag_set_cursor (GdkDrag *drag, GdkCursor *cursor); void gdk_drag_set_actions (GdkDrag *drag, GdkDragAction actions); -void gdk_drag_set_suggested_action (GdkDrag *drag, - GdkDragAction suggested_action); void gdk_drag_set_selected_action (GdkDrag *drag, GdkDragAction action); |