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-autocompletion.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-autocompletion.c')
-rw-r--r-- | shell/e-shell-config-autocompletion.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/e-shell-config-autocompletion.c b/shell/e-shell-config-autocompletion.c index fa993fa15d..37ea318681 100644 --- a/shell/e-shell-config-autocompletion.c +++ b/shell/e-shell-config-autocompletion.c @@ -59,8 +59,7 @@ static void config_control_destroy_callback (EvolutionConfigControl *config_control, EvolutionAutocompletionConfig *ac) { - bonobo_object_unref (BONOBO_OBJECT (ac->shell_client)); - + g_object_unref (ac->shell_client); g_object_unref (ac->config_listener); g_free (ac); |