summaryrefslogtreecommitdiff
path: root/plugins/gtkui/support.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-10-11 20:19:50 +0200
committerGravatar waker <wakeroid@gmail.com>2011-10-11 20:19:50 +0200
commit9ca6e018ea91c798ddf39f4b34f4272670b2c96e (patch)
tree39061328660f0b8d3f3d5763c72005579994ad65 /plugins/gtkui/support.c
parent265cf52d7539182157894b839fde51b69ba5355c (diff)
gdk_drag_context_list_targets fix for gtk<2.22
Diffstat (limited to 'plugins/gtkui/support.c')
-rw-r--r--plugins/gtkui/support.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/gtkui/support.c b/plugins/gtkui/support.c
index 6ca6d359..35605810 100644
--- a/plugins/gtkui/support.c
+++ b/plugins/gtkui/support.c
@@ -158,6 +158,10 @@ GdkDragAction
gdk_drag_context_get_selected_action (GdkDragContext *context) {
return context->action;
}
+GList *
+gdk_drag_context_list_targets (GdkDragContext *context) {
+ context->targets;
+}
#endif
#if !GTK_CHECK_VERSION(2,24,0)