mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Rename time to time_ to avoid a scanner warning
This commit is contained in:
parent
60e0acfc11
commit
358a2b8675
10
gtk/gtkdnd.c
10
gtk/gtkdnd.c
@ -964,15 +964,15 @@ gtk_drag_update_cursor (GtkDragSourceInfo *info)
|
||||
* @widget: a #GtkWidget
|
||||
* @context: drag context
|
||||
* @target: format to retrieve the data in.
|
||||
* @time: timestamp of triggering event.
|
||||
* @time_: timestamp of triggering event.
|
||||
*
|
||||
* Get the data for a drag or drop
|
||||
*/
|
||||
void
|
||||
void
|
||||
gtk_drag_get_data (GtkWidget *widget,
|
||||
GdkDragContext *context,
|
||||
GdkAtom target,
|
||||
guint32 time)
|
||||
guint32 time_)
|
||||
{
|
||||
GtkWidget *selection_widget;
|
||||
|
||||
@ -983,7 +983,7 @@ gtk_drag_get_data (GtkWidget *widget,
|
||||
|
||||
g_object_ref (context);
|
||||
g_object_ref (widget);
|
||||
|
||||
|
||||
g_signal_connect (selection_widget, "selection-received",
|
||||
G_CALLBACK (gtk_drag_selection_received), widget);
|
||||
|
||||
@ -992,7 +992,7 @@ gtk_drag_get_data (GtkWidget *widget,
|
||||
gtk_selection_convert (selection_widget,
|
||||
gdk_drag_get_selection (context),
|
||||
target,
|
||||
time);
|
||||
time_);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user