From: Nickolay V. Shmyrev Date: Mon, 4 Jul 2005 19:12:26 +0000 (+0000) Subject: Unref the completion after setting it to the entry X-Git-Tag: EVINCE_0_3_3~174 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=ec348ae2051c72cd31cb69035cfb64182fcd89d5;p=evince.git Unref the completion after setting it to the entry --- diff --git a/ChangeLog b/ChangeLog index 97ba1667..d5f16234 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-07-04 Carlos Garcia Campos + + * shell/ev-page-action.c: unref the completion after setting it to the + entry + 2005-07-04 Matthew S. Wilson * tiff/tiff2ps.c (generateEPSF): disable generating encapsulated diff --git a/shell/ev-page-action.c b/shell/ev-page-action.c index 99f1d6ab..4bb63b2f 100644 --- a/shell/ev-page-action.c +++ b/shell/ev-page-action.c @@ -479,7 +479,8 @@ update_model (EvPageAction *page, GParamSpec *pspec, EvPageActionWidget *proxy) (GtkCellLayoutDataFunc) display_completion_text, proxy, NULL); gtk_entry_set_completion (GTK_ENTRY (proxy->entry), completion); - + + g_object_unref (completion); g_object_unref (model); } }