aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-storage.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-03-22 20:47:16 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-03-22 20:47:16 +0800
commit03765ef0bb21fb7d98af1dd8d72a76e683a26a2f (patch)
treed78acece44e41498a8cb63c42bb5b483e87d67eb /shell/evolution-storage.c
parent2282cef752462976015bffebcce0640457431309 (diff)
downloadgsoc2013-evolution-03765ef0bb21fb7d98af1dd8d72a76e683a26a2f.tar
gsoc2013-evolution-03765ef0bb21fb7d98af1dd8d72a76e683a26a2f.tar.gz
gsoc2013-evolution-03765ef0bb21fb7d98af1dd8d72a76e683a26a2f.tar.bz2
gsoc2013-evolution-03765ef0bb21fb7d98af1dd8d72a76e683a26a2f.tar.lz
gsoc2013-evolution-03765ef0bb21fb7d98af1dd8d72a76e683a26a2f.tar.xz
gsoc2013-evolution-03765ef0bb21fb7d98af1dd8d72a76e683a26a2f.tar.zst
gsoc2013-evolution-03765ef0bb21fb7d98af1dd8d72a76e683a26a2f.zip
Added an xfer method to `EStorage' and `GNOME::Evolution::Storage'.
svn path=/trunk/; revision=8894
Diffstat (limited to 'shell/evolution-storage.c')
-rw-r--r--shell/evolution-storage.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c
index c3ffad319c..fd9bbc11d0 100644
--- a/shell/evolution-storage.c
+++ b/shell/evolution-storage.c
@@ -323,6 +323,17 @@ impl_Storage_async_remove_folder (PortableServer_Servant servant,
}
static void
+impl_Storage_async_xfer_folder (PortableServer_Servant servant,
+ const CORBA_char *source_path,
+ const CORBA_char *destination_path,
+ const CORBA_boolean remove_source,
+ const Bonobo_Listener listener,
+ CORBA_Environment *ev)
+{
+ g_print ("FIXME: impl_Storage_async_xfer_folder -- implement me!\n");
+}
+
+static void
impl_Storage_add_listener (PortableServer_Servant servant,
const GNOME_Evolution_StorageListener listener,
CORBA_Environment *ev)
@@ -510,6 +521,7 @@ evolution_storage_get_epv (void)
epv->_get_name = impl_Storage__get_name;
epv->asyncCreateFolder = impl_Storage_async_create_folder;
epv->asyncRemoveFolder = impl_Storage_async_remove_folder;
+ epv->asyncXferFolder = impl_Storage_async_xfer_folder;
epv->addListener = impl_Storage_add_listener;
epv->removeListener = impl_Storage_remove_listener;