diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 1 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2003-10-13 Marco Pesenti Gritti <marco@gnome.org> + + * lib/widgets/ephy-location-entry.c: + (ephy_location_entry_set_completion): + + Unref completion + 2003-10-13 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-single.c: (ephy_embed_single_free_passwords): diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index c160a898e..e581a0c30 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -534,6 +534,7 @@ ephy_location_entry_set_completion (EphyLocationEntry *le, cell, "text", text_col); gtk_entry_set_completion (GTK_ENTRY (le->priv->entry), completion); + g_object_unref (completion); } void |