diff options
author | Benjamin Otte <otte@redhat.com> | 2018-06-16 04:49:47 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-06-18 23:49:53 +0200 |
commit | 9a91d3739dc1986651f384cc4021e1ac32453268 (patch) | |
tree | cd733af2ed056beb9c8ac48b65ad074a642a405c /gtk/gtkcalendar.c | |
parent | a2839d157fa89eaca287b1aedca7dc72425cf60c (diff) | |
download | gtk+-9a91d3739dc1986651f384cc4021e1ac32453268.tar.gz |
widget: Remove time argument from drag_data_get() vfunc
Diffstat (limited to 'gtk/gtkcalendar.c')
-rw-r--r-- | gtk/gtkcalendar.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c index f946ced91d..1ccbed01c5 100644 --- a/gtk/gtkcalendar.c +++ b/gtk/gtkcalendar.c @@ -309,8 +309,7 @@ static gboolean gtk_calendar_query_tooltip (GtkWidget *widget, static void gtk_calendar_drag_data_get (GtkWidget *widget, GdkDragContext *context, - GtkSelectionData *selection_data, - guint time); + GtkSelectionData *selection_data); static void gtk_calendar_drag_data_received (GtkWidget *widget, GdkDrop *drop, GtkSelectionData *selection_data); @@ -2902,8 +2901,7 @@ gtk_calendar_grab_notify (GtkWidget *widget, static void gtk_calendar_drag_data_get (GtkWidget *widget, GdkDragContext *context, - GtkSelectionData *selection_data, - guint time) + GtkSelectionData *selection_data) { GtkCalendar *calendar = GTK_CALENDAR (widget); GtkCalendarPrivate *priv = calendar->priv; |