Use g_object_ref() instead of gtk_widget_ref(). (#483563)

2007-10-05  Hiroyuki Ikezoe  <poincare@ikezoe.net>

	* gtk/gtkdnd.c: Use g_object_ref() instead of gtk_widget_ref().
	(#483563)


svn path=/trunk/; revision=18884
This commit is contained in:
Hiroyuki Ikezoe 2007-10-05 03:08:55 +00:00 committed by Hiroyuki Ikezoe
parent 43f5b189b7
commit 31f26042f7
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2007-10-05 Hiroyuki Ikezoe <poincare@ikezoe.net>
* gtk/gtkdnd.c: Use g_object_ref() instead of gtk_widget_ref().
(#483563)
2007-10-04 Emmanuele Bassi <ebassi@gnome.org>
* gtk/gtkrecentaction.c:

View File

@ -1801,7 +1801,7 @@ gtk_drag_proxy_begin (GtkWidget *widget,
source_info = gtk_drag_get_source_info (context, TRUE);
source_info->ipc_widget = ipc_widget;
source_info->widget = gtk_widget_ref (widget);
source_info->widget = g_object_ref (widget);
source_info->target_list = gtk_target_list_new (NULL, 0);
tmp_list = dest_info->context->targets;
@ -2235,7 +2235,7 @@ gtk_drag_begin_internal (GtkWidget *widget,
info->ipc_widget = ipc_widget;
g_object_set_data (G_OBJECT (info->ipc_widget), I_("gtk-info"), info);
info->widget = gtk_widget_ref (widget);
info->widget = g_object_ref (widget);
info->button = button;
info->cursor = cursor;
@ -2885,7 +2885,7 @@ gtk_drag_set_icon_window (GdkDragContext *context,
gtk_drag_remove_icon (info);
if (widget)
gtk_widget_ref (widget);
g_object_ref (widget);
info->icon_window = widget;
info->hot_x = hot_x;