diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-07-23 10:04:14 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-07-23 10:04:14 +0800 |
commit | 97cc1d57adcdefb5b63a704f42f692e3cffb4014 (patch) | |
tree | 8cf6ca737156fa7ae603a5b479813f6a6c5830d5 /shell/evolution-shell-component.c | |
parent | 13c7f54818b9b6a25a47289768d17e5a885cec7a (diff) | |
download | gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.tar gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.tar.gz gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.tar.bz2 gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.tar.lz gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.tar.xz gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.tar.zst gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.zip |
Add an extra @type arg to the xferFolder and removeFolder methods in
the ShellComponent interface. Updated the EvolutionShellComponent
GTK+ wrapper and all the component accordingly. Get the calendar to
use this so it can delete both tasks and calendar folders.
svn path=/trunk/; revision=11300
Diffstat (limited to 'shell/evolution-shell-component.c')
-rw-r--r-- | shell/evolution-shell-component.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/evolution-shell-component.c b/shell/evolution-shell-component.c index cf7de2354c..8bf0f68f10 100644 --- a/shell/evolution-shell-component.c +++ b/shell/evolution-shell-component.c @@ -369,6 +369,7 @@ static void impl_removeFolderAsync (PortableServer_Servant servant, const GNOME_Evolution_ShellComponentListener listener, const CORBA_char *physical_uri, + const CORBA_char *type, CORBA_Environment *ev) { BonoboObject *bonobo_object; @@ -386,7 +387,7 @@ impl_removeFolderAsync (PortableServer_Servant servant, return; } - (* priv->remove_folder_fn) (shell_component, physical_uri, listener, priv->closure); + (* priv->remove_folder_fn) (shell_component, physical_uri, type, listener, priv->closure); } static void @@ -394,6 +395,7 @@ impl_xferFolderAsync (PortableServer_Servant servant, const GNOME_Evolution_ShellComponentListener listener, const CORBA_char *source_physical_uri, const CORBA_char *destination_physical_uri, + const CORBA_char *type, const CORBA_boolean remove_source, CORBA_Environment *ev) { @@ -415,6 +417,7 @@ impl_xferFolderAsync (PortableServer_Servant servant, (* priv->xfer_folder_fn) (shell_component, source_physical_uri, destination_physical_uri, + type, remove_source, listener, priv->closure); |