aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-local-storage.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-06 01:33:13 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-06 01:33:13 +0800
commit99c2d72b9971cabfb736e2547f5b57f48fafa354 (patch)
treeec481bad896177c00da979093c51dcfcdd7e3d3a /shell/e-local-storage.c
parent1bb3a9f0a8a0a54f9d563e637c2c4e52eaf77ef3 (diff)
downloadgsoc2013-evolution-99c2d72b9971cabfb736e2547f5b57f48fafa354.tar
gsoc2013-evolution-99c2d72b9971cabfb736e2547f5b57f48fafa354.tar.gz
gsoc2013-evolution-99c2d72b9971cabfb736e2547f5b57f48fafa354.tar.bz2
gsoc2013-evolution-99c2d72b9971cabfb736e2547f5b57f48fafa354.tar.lz
gsoc2013-evolution-99c2d72b9971cabfb736e2547f5b57f48fafa354.tar.xz
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-local-storage.c')
-rw-r--r--shell/e-local-storage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c
index 45f9ae2bc9..6cdaa1d7b3 100644
--- a/shell/e-local-storage.c
+++ b/shell/e-local-storage.c
@@ -321,7 +321,7 @@ component_async_create_folder_callback (EvolutionShellComponentClient *shell_com
}
}
- bonobo_object_unref (BONOBO_OBJECT (shell_component_client));
+ g_object_unref (shell_component_client);
if (callback_data->listener != CORBA_OBJECT_NIL)
notify_listener (callback_data->listener, storage_result,
@@ -547,7 +547,7 @@ component_async_remove_folder_callback (EvolutionShellComponentClient *shell_com
g_print ("...Error removing %s!\n", path);
}
- bonobo_object_unref (BONOBO_OBJECT (shell_component_client));
+ g_object_unref (shell_component_client);
/* Now go on and delete the next subfolder in the list that still
exists, deallocating the elements in the list in the process. */