diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-15 07:36:52 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-15 07:36:52 +0800 |
commit | c27902bcebc0ce445bb19bd315f40f5d672ace20 (patch) | |
tree | db2b651e839a47c371b35ccce76db9f02d9d1d87 /shell/e-shell-view.c | |
parent | 4ff0a43cd48adc7cdc98be078cdfbc425aa7e8b0 (diff) | |
download | gsoc2013-evolution-c27902bcebc0ce445bb19bd315f40f5d672ace20.tar.gz gsoc2013-evolution-c27902bcebc0ce445bb19bd315f40f5d672ace20.tar.zst gsoc2013-evolution-c27902bcebc0ce445bb19bd315f40f5d672ace20.zip |
Ref/sink the GtkTooltips.
* e-shell-view.c (init): Ref/sink the GtkTooltips.
* e-uri-schema-registry.c (schema_handler_free): g_object_unref()
on the component instead of bonobo_object_unref().
svn path=/trunk/; revision=18765
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 836ce0c9bc..0b48bc3c2c 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -1487,6 +1487,8 @@ init (EShellView *shell_view) priv->delayed_selection = NULL; priv->tooltips = gtk_tooltips_new (); + g_object_ref (priv->tooltips); + gtk_object_sink (GTK_OBJECT (priv->tooltips)); priv->appbar = NULL; priv->hpaned = NULL; |