Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-page-action.c
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-07-04 19:12:26 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-07-04 19:12:26 (GMT)
commitec348ae2051c72cd31cb69035cfb64182fcd89d5 (patch)
tree53a3157af7d29ce2dd2baa1d0f49695cdc03825f /shell/ev-page-action.c
parentf01f7f5ea7547d2bcb4891493fb9c59ce8ec5b3c (diff)
Unref the completion after setting it to the entry
Diffstat (limited to 'shell/ev-page-action.c')
-rw-r--r--shell/ev-page-action.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ev-page-action.c b/shell/ev-page-action.c
index 99f1d6a..4bb63b2 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);
}
}