diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-06 01:33:13 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-06 01:33:13 +0800 |
commit | 99c2d72b9971cabfb736e2547f5b57f48fafa354 (patch) | |
tree | ec481bad896177c00da979093c51dcfcdd7e3d3a /shell/e-shell-config-default-folders.c | |
parent | 1bb3a9f0a8a0a54f9d563e637c2c4e52eaf77ef3 (diff) | |
download | gsoc2013-evolution-99c2d72b9971cabfb736e2547f5b57f48fafa354.tar.gz gsoc2013-evolution-99c2d72b9971cabfb736e2547f5b57f48fafa354.tar.zst gsoc2013-evolution-99c2d72b9971cabfb736e2547f5b57f48fafa354.zip |
g_object_unref instead of bonobo_object_unref for the
* All: g_object_unref instead of bonobo_object_unref for the
EvolutionShellComponentClient and EvolutionShellClient interfaces.
svn path=/trunk/; revision=18555
Diffstat (limited to 'shell/e-shell-config-default-folders.c')
-rw-r--r-- | shell/e-shell-config-default-folders.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-shell-config-default-folders.c b/shell/e-shell-config-default-folders.c index 4abeb9b5ae..0721de8e47 100644 --- a/shell/e-shell-config-default-folders.c +++ b/shell/e-shell-config-default-folders.c @@ -110,7 +110,8 @@ config_control_destroy_cb (EvolutionConfigControl *config_control, g_free (dfc->tasks_path); g_object_unref (dfc->glade); - bonobo_object_unref (BONOBO_OBJECT (dfc->shell_client)); + g_object_unref (dfc->shell_client); + g_free (dfc); } |