diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | gtk/gtkentrycompletion.c | 2 |
3 files changed, 11 insertions, 1 deletions
@@ -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): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 6d8d2d2bd3..d0cd11fcb5 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -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): diff --git a/gtk/gtkentrycompletion.c b/gtk/gtkentrycompletion.c index 656c7fdf5a..77196521d0 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); |