remove accidential 2nd parameter to g_object_unref().

2006-07-21  Michael Natterer  <mitch@imendio.com>

	* gtk/gtkentrycompletion.c (gtk_entry_completion_finalize):
	remove accidential 2nd parameter to g_object_unref().
This commit is contained in:
Michael Natterer 2006-07-21 08:15:53 +00:00 committed by Michael Natterer
parent 27f3cb4fda
commit 4087803aad
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-07-21 Michael Natterer <mitch@imendio.com>
* gtk/gtkentrycompletion.c (gtk_entry_completion_finalize):
remove accidential 2nd parameter to g_object_unref().
2006-07-21 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkentrycompletion.c (gtk_entry_completion_finalize):

View File

@ -1,3 +1,8 @@
2006-07-21 Michael Natterer <mitch@imendio.com>
* gtk/gtkentrycompletion.c (gtk_entry_completion_finalize):
remove accidential 2nd parameter to g_object_unref().
2006-07-21 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkentrycompletion.c (gtk_entry_completion_finalize):

View File

@ -566,7 +566,7 @@ gtk_entry_completion_finalize (GObject *object)
gtk_entry_set_completion (GTK_ENTRY (priv->entry), NULL);
if (priv->actions)
g_object_unref (priv->actions, priv->actions);
g_object_unref (priv->actions);
if (priv->action_view)
g_object_unref (priv->action_view);