summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserbutton.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2017-12-05 04:06:20 +0100
committerBenjamin Otte <otte@redhat.com>2017-12-05 05:29:00 +0100
commit4658d7ea5484c7d98c43b8f33483e43995efd8d5 (patch)
treed9679bf4405c648552d4c80eeb140883f46515fb /gtk/gtkfilechooserbutton.c
parent6f00c1b6268cb2ac573b845ee881832b5edc4a0a (diff)
downloadgtk+-4658d7ea5484c7d98c43b8f33483e43995efd8d5.tar.gz
dnd: Remove x/y coordinates from drag-data-received
This is in preparation of using input streams to show that these coordinates aren't needed most of the time and can otherwise be saved during GtkWidget::drag-drop.
Diffstat (limited to 'gtk/gtkfilechooserbutton.c')
-rw-r--r--gtk/gtkfilechooserbutton.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gtk/gtkfilechooserbutton.c b/gtk/gtkfilechooserbutton.c
index e3b26a7f68..dfdad301ea 100644
--- a/gtk/gtkfilechooserbutton.c
+++ b/gtk/gtkfilechooserbutton.c
@@ -253,8 +253,6 @@ static void gtk_file_chooser_button_finalize (GObject *ob
static void gtk_file_chooser_button_destroy (GtkWidget *widget);
static void gtk_file_chooser_button_drag_data_received (GtkWidget *widget,
GdkDragContext *context,
- gint x,
- gint y,
GtkSelectionData *data,
guint drag_time);
static void gtk_file_chooser_button_show (GtkWidget *widget);
@@ -1212,8 +1210,6 @@ dnd_select_folder_get_info_cb (GCancellable *cancellable,
static void
gtk_file_chooser_button_drag_data_received (GtkWidget *widget,
GdkDragContext *context,
- gint x,
- gint y,
GtkSelectionData *data,
guint drag_time)
{
@@ -1225,7 +1221,6 @@ gtk_file_chooser_button_drag_data_received (GtkWidget *widget,
if (GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->drag_data_received != NULL)
GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->drag_data_received (widget,
context,
- x, y,
data,
drag_time);