diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-02-24 23:45:27 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-02-24 23:45:27 +0800 |
commit | cd413978fcc310ca6c721142a2c11a6e4b692b8a (patch) | |
tree | c83a6e6591d2c1ba413caa1c0893cab477188e82 | |
parent | 1b5bcee1ed41429ded31d5f198e0e58eca68b68d (diff) | |
download | gsoc2013-evolution-cd413978fcc310ca6c721142a2c11a6e4b692b8a.tar gsoc2013-evolution-cd413978fcc310ca6c721142a2c11a6e4b692b8a.tar.gz gsoc2013-evolution-cd413978fcc310ca6c721142a2c11a6e4b692b8a.tar.bz2 gsoc2013-evolution-cd413978fcc310ca6c721142a2c11a6e4b692b8a.tar.lz gsoc2013-evolution-cd413978fcc310ca6c721142a2c11a6e4b692b8a.tar.xz gsoc2013-evolution-cd413978fcc310ca6c721142a2c11a6e4b692b8a.tar.zst gsoc2013-evolution-cd413978fcc310ca6c721142a2c11a6e4b692b8a.zip |
(impl_populateFolderContextMenu):
Don't release_unref the corba_uih since
bonobo_ui_component_set_container() takes ownership of the object
without reffing it.
svn path=/trunk/; revision=20032
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/evolution-shell-component.c | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index eea5624568..05e159bddd 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,12 @@ 2003-02-24 Ettore Perazzoli <ettore@ximian.com> + * evolution-shell-component.c (impl_populateFolderContextMenu): + Don't release_unref the corba_uih since + bonobo_ui_component_set_container() takes ownership of the object + without reffing it. + +2003-02-24 Ettore Perazzoli <ettore@ximian.com> + * glade/e-active-connection-dialog.glade: Update dialog to use stock response IDs. diff --git a/shell/evolution-shell-component.c b/shell/evolution-shell-component.c index 6e75771920..9d184e1193 100644 --- a/shell/evolution-shell-component.c +++ b/shell/evolution-shell-component.c @@ -669,7 +669,6 @@ impl_populateFolderContextMenu (PortableServer_Servant servant, priv->uic = bonobo_ui_component_new_default (); bonobo_ui_component_set_container (priv->uic, corba_uih, NULL); - bonobo_object_release_unref (corba_uih, NULL); (* priv->populate_folder_context_menu_fn) (shell_component, priv->uic, physical_uri, type, priv->closure); } |