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 /tests | |
parent | a2839d157fa89eaca287b1aedca7dc72425cf60c (diff) | |
download | gtk+-9a91d3739dc1986651f384cc4021e1ac32453268.tar.gz |
widget: Remove time argument from drag_data_get() vfunc
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testdnd.c | 1 | ||||
-rw-r--r-- | tests/testdnd2.c | 2 | ||||
-rw-r--r-- | tests/testentryicons.c | 1 | ||||
-rw-r--r-- | tests/testimage.c | 1 | ||||
-rw-r--r-- | tests/testlist3.c | 1 |
5 files changed, 0 insertions, 6 deletions
diff --git a/tests/testdnd.c b/tests/testdnd.c index 26cbfe1e21..53fb07788b 100644 --- a/tests/testdnd.c +++ b/tests/testdnd.c @@ -420,7 +420,6 @@ void source_drag_data_get (GtkWidget *widget, GdkDragContext *context, GtkSelectionData *selection_data, - guint time, gpointer data) { if (gtk_selection_data_get_target (selection_data) == g_intern_static_string ("application/x-rootwindow-drop")) diff --git a/tests/testdnd2.c b/tests/testdnd2.c index cd9dcee51f..613caa8c8c 100644 --- a/tests/testdnd2.c +++ b/tests/testdnd2.c @@ -155,7 +155,6 @@ void image_drag_data_get (GtkWidget *widget, GdkDragContext *context, GtkSelectionData *selection_data, - guint time, gpointer data) { GdkPaintable *paintable; @@ -312,7 +311,6 @@ void spinner_drag_data_get (GtkWidget *widget, GdkDragContext *context, GtkSelectionData *selection_data, - guint time, gpointer data) { g_print ("GtkWidget::drag-data-get\n"); diff --git a/tests/testentryicons.c b/tests/testentryicons.c index 3ef25e7e92..245ab1da2c 100644 --- a/tests/testentryicons.c +++ b/tests/testentryicons.c @@ -24,7 +24,6 @@ static void drag_data_get_cb (GtkWidget *widget, GdkDragContext *context, GtkSelectionData *data, - guint time, gpointer user_data) { gint pos; diff --git a/tests/testimage.c b/tests/testimage.c index 2b222f9547..4001bd67fb 100644 --- a/tests/testimage.c +++ b/tests/testimage.c @@ -34,7 +34,6 @@ void drag_data_get (GtkWidget *widget, GdkDragContext *context, GtkSelectionData *selection_data, - guint time, gpointer data) { GtkWidget *image = GTK_WIDGET (data); diff --git a/tests/testlist3.c b/tests/testlist3.c index b97c2a38c1..13c8a94e5a 100644 --- a/tests/testlist3.c +++ b/tests/testlist3.c @@ -29,7 +29,6 @@ void drag_data_get (GtkWidget *widget, GdkDragContext *context, GtkSelectionData *selection_data, - guint time, gpointer data) { gtk_selection_data_set (selection_data, |