(impl_sendAndReceive): New, implementation for
Evolution.Component.sendAndReceive. (mail_component_class_init): Install. svn path=/trunk/; revision=23335
This commit is contained in:
@ -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>
|
2003-11-13 Jeffrey Stedfast <fejj@ximian.com>
|
||||||
|
|
||||||
* mail-vfolder.c (context_rule_removed): Modified to not use
|
* mail-vfolder.c (context_rule_removed): Modified to not use
|
||||||
|
@ -400,6 +400,13 @@ impl_requestCreateItem (PortableServer_Servant servant,
|
|||||||
em_utils_compose_new_message ();
|
em_utils_compose_new_message ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
impl_sendAndReceive (PortableServer_Servant servant,
|
||||||
|
CORBA_Environment *ev)
|
||||||
|
{
|
||||||
|
mail_send_receive ();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Initialization. */
|
/* Initialization. */
|
||||||
|
|
||||||
@ -417,6 +424,7 @@ mail_component_class_init (MailComponentClass *class)
|
|||||||
epv->createControls = impl_createControls;
|
epv->createControls = impl_createControls;
|
||||||
epv->_get_userCreatableItems = impl__get_userCreatableItems;
|
epv->_get_userCreatableItems = impl__get_userCreatableItems;
|
||||||
epv->requestCreateItem = impl_requestCreateItem;
|
epv->requestCreateItem = impl_requestCreateItem;
|
||||||
|
epv->sendAndReceive = impl_sendAndReceive;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Reference in New Issue
Block a user