Rename time to time_ to avoid a scanner warning

This commit is contained in:
Johan Dahlin 2011-02-08 13:29:57 -02:00
parent 60e0acfc11
commit 358a2b8675

View File

@ -964,7 +964,7 @@ 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
*/
@ -972,7 +972,7 @@ void
gtk_drag_get_data (GtkWidget *widget,
GdkDragContext *context,
GdkAtom target,
guint32 time)
guint32 time_)
{
GtkWidget *selection_widget;
@ -992,7 +992,7 @@ gtk_drag_get_data (GtkWidget *widget,
gtk_selection_convert (selection_widget,
gdk_drag_get_selection (context),
target,
time);
time_);
}