(impl_sendAndReceive): New, implementation for

Evolution.Component.sendAndReceive.
(mail_component_class_init): Install.

svn path=/trunk/; revision=23335
This commit is contained in:
Ettore Perazzoli
2003-11-13 21:35:13 +00:00
parent 5880c00dd2
commit 0f99b321bc
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2003-11-13 Ettore Perazzoli <ettore@ximian.com>
* mail-component.c (impl_sendAndReceive): New, implementation for
Evolution.Component.sendAndReceive.
(mail_component_class_init): Install.
2003-11-13 Jeffrey Stedfast <fejj@ximian.com>
* mail-vfolder.c (context_rule_removed): Modified to not use

View File

@ -400,6 +400,13 @@ impl_requestCreateItem (PortableServer_Servant servant,
em_utils_compose_new_message ();
}
static void
impl_sendAndReceive (PortableServer_Servant servant,
CORBA_Environment *ev)
{
mail_send_receive ();
}
/* Initialization. */
@ -417,6 +424,7 @@ mail_component_class_init (MailComponentClass *class)
epv->createControls = impl_createControls;
epv->_get_userCreatableItems = impl__get_userCreatableItems;
epv->requestCreateItem = impl_requestCreateItem;
epv->sendAndReceive = impl_sendAndReceive;
}
static void