aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-corba-storage.c
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2002-03-05 01:11:25 +0800
committerIain Holmes <iain@src.gnome.org>2002-03-05 01:11:25 +0800
commit5623768424948188144c1dd3fd5e2bc4d47fe888 (patch)
treef1c02738ed90f4a88a3c8c7319315dcf90b95507 /shell/e-corba-storage.c
parent0ccb79c8cacc55b0df777b02be241c72e6c3d227 (diff)
downloadgsoc2013-evolution-5623768424948188144c1dd3fd5e2bc4d47fe888.tar
gsoc2013-evolution-5623768424948188144c1dd3fd5e2bc4d47fe888.tar.gz
gsoc2013-evolution-5623768424948188144c1dd3fd5e2bc4d47fe888.tar.bz2
gsoc2013-evolution-5623768424948188144c1dd3fd5e2bc4d47fe888.tar.lz
gsoc2013-evolution-5623768424948188144c1dd3fd5e2bc4d47fe888.tar.xz
gsoc2013-evolution-5623768424948188144c1dd3fd5e2bc4d47fe888.tar.zst
gsoc2013-evolution-5623768424948188144c1dd3fd5e2bc4d47fe888.zip
CORBA stuff required for the summary to find out details about storages from the shell
svn path=/trunk/; revision=15899
Diffstat (limited to 'shell/e-corba-storage.c')
-rw-r--r--shell/e-corba-storage.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/e-corba-storage.c b/shell/e-corba-storage.c
index 3aae784489..1aa1c67674 100644
--- a/shell/e-corba-storage.c
+++ b/shell/e-corba-storage.c
@@ -585,5 +585,14 @@ e_corba_storage_get_StorageListener (ECorbaStorage *corba_storage)
return corba_storage->priv->storage_listener_interface;
}
+GNOME_Evolution_Storage
+e_corba_storage_get_corba_objref (ECorbaStorage *corba_storage)
+{
+ g_return_val_if_fail (corba_storage != NULL, CORBA_OBJECT_NIL);
+ g_return_val_if_fail (E_IS_CORBA_STORAGE (corba_storage), CORBA_OBJECT_NIL);
+
+ return corba_storage->priv->storage_interface;
+}
+
E_MAKE_TYPE (e_corba_storage, "ECorbaStorage", ECorbaStorage, class_init, init, PARENT_TYPE)