diff options
author | Michael Natterer <mitch@imendio.com> | 2006-07-21 08:15:53 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2006-07-21 08:15:53 +0000 |
commit | 4087803aad6840689e9fb54ae2d84bbb33a9ab9c (patch) | |
tree | f501cee73e47b91521d987b48edc6cd5d8b71683 /gtk/gtkentrycompletion.c | |
parent | 27f3cb4fda2f689050e9ce09ed66542df64f0f40 (diff) | |
download | gdk-pixbuf-4087803aad6840689e9fb54ae2d84bbb33a9ab9c.tar.gz |
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().
Diffstat (limited to 'gtk/gtkentrycompletion.c')
-rw-r--r-- | gtk/gtkentrycompletion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkentrycompletion.c b/gtk/gtkentrycompletion.c index 656c7fdf5..77196521d 100644 --- a/gtk/gtkentrycompletion.c +++ b/gtk/gtkentrycompletion.c @@ -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); |