diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-10-27 19:59:10 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-10-27 19:59:10 +0800 |
commit | 21f69a6461a12704c97fad51d7ac709faab90cdc (patch) | |
tree | 6adb2ff7b50a3623b4ec9597036ec4eb097dc470 | |
parent | 8102583a5ae581f5e7490f8a0cc0cfeec2266499 (diff) | |
download | gsoc2013-epiphany-21f69a6461a12704c97fad51d7ac709faab90cdc.tar gsoc2013-epiphany-21f69a6461a12704c97fad51d7ac709faab90cdc.tar.gz gsoc2013-epiphany-21f69a6461a12704c97fad51d7ac709faab90cdc.tar.bz2 gsoc2013-epiphany-21f69a6461a12704c97fad51d7ac709faab90cdc.tar.lz gsoc2013-epiphany-21f69a6461a12704c97fad51d7ac709faab90cdc.tar.xz gsoc2013-epiphany-21f69a6461a12704c97fad51d7ac709faab90cdc.tar.zst gsoc2013-epiphany-21f69a6461a12704c97fad51d7ac709faab90cdc.zip |
Sink after ref
2003-10-27 Marco Pesenti Gritti <marco@gnome.org>
* lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_set_fixed):
Sink after ref
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | lib/egg/egg-editable-toolbar.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2003-10-27 Marco Pesenti Gritti <marco@gnome.org> + * lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_set_fixed): + + Sink after ref + +2003-10-27 Marco Pesenti Gritti <marco@gnome.org> + * src/ephy-nautilus-view.c: (gnv_embed_dom_mouse_click_cb), (gnv_popup_cmd_new_window), (gnv_popup_cmd_image_in_new_window), (gnv_popup_cmd_frame_in_new_window): diff --git a/lib/egg/egg-editable-toolbar.c b/lib/egg/egg-editable-toolbar.c index 2e473fee0..349f6514a 100755 --- a/lib/egg/egg-editable-toolbar.c +++ b/lib/egg/egg-editable-toolbar.c @@ -1081,6 +1081,7 @@ egg_editable_toolbar_set_fixed (EggEditableToolbar *etoolbar, etoolbar->priv->fixed_toolbar = gtk_toolbar_new (); gtk_toolbar_set_show_arrow (GTK_TOOLBAR (etoolbar->priv->fixed_toolbar), FALSE); g_object_ref (etoolbar->priv->fixed_toolbar); + gtk_object_sink (GTK_OBJECT (etoolbar->priv->fixed_toolbar)); fixed_item = GTK_WIDGET (gtk_tool_item_new ()); gtk_toolbar_insert (GTK_TOOLBAR (etoolbar->priv->fixed_toolbar), |