diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-22 02:51:30 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-22 02:51:30 +0800 |
commit | 21743ac2cfa2d2ddcd539e9b7695cc8dd720ef36 (patch) | |
tree | 0111dbe4d8a6d5617f5e5406001b0024e4293169 /composer/evolution-composer.c | |
parent | 653cfffc0e00dfb59b36813c1b45c53d3f773c65 (diff) | |
download | gsoc2013-evolution-21743ac2cfa2d2ddcd539e9b7695cc8dd720ef36.tar.gz gsoc2013-evolution-21743ac2cfa2d2ddcd539e9b7695cc8dd720ef36.tar.zst gsoc2013-evolution-21743ac2cfa2d2ddcd539e9b7695cc8dd720ef36.zip |
Merge new-ui-branch into the trunk.
svn path=/trunk/; revision=22966
Diffstat (limited to 'composer/evolution-composer.c')
-rw-r--r-- | composer/evolution-composer.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/composer/evolution-composer.c b/composer/evolution-composer.c index b5c7630de8..31da13c342 100644 --- a/composer/evolution-composer.c +++ b/composer/evolution-composer.c @@ -47,26 +47,26 @@ struct _EvolutionComposerPrivate { }; /* CORBA interface implementation. */ -static EDestination ** +static EABDestination ** corba_recipientlist_to_destv (const GNOME_Evolution_Composer_RecipientList *cl) { GNOME_Evolution_Composer_Recipient *recip; - EDestination **destv; + EABDestination **destv; int i; if (cl->_length == 0) return NULL; - destv = g_new (EDestination *, cl->_length+1); + destv = g_new (EABDestination *, cl->_length+1); for (i = 0; i < cl->_length; ++i) { recip = &(cl->_buffer[i]); - destv[i] = e_destination_new (); + destv[i] = eab_destination_new (); if (*recip->name) - e_destination_set_name (destv[i], recip->name); - e_destination_set_email (destv[i], recip->address); + eab_destination_set_name (destv[i], recip->name); + eab_destination_set_email (destv[i], recip->address); } destv[cl->_length] = NULL; @@ -85,7 +85,7 @@ impl_Composer_set_headers (PortableServer_Servant servant, { BonoboObject *bonobo_object; EvolutionComposer *composer; - EDestination **tov, **ccv, **bccv; + EABDestination **tov, **ccv, **bccv; EAccountList *accounts; EAccount *account; EIterator *iter; @@ -122,9 +122,9 @@ impl_Composer_set_headers (PortableServer_Servant servant, e_msg_composer_set_headers (composer->composer, account->name, tov, ccv, bccv, subject); - e_destination_freev (tov); - e_destination_freev (ccv); - e_destination_freev (bccv); + eab_destination_freev (tov); + eab_destination_freev (ccv); + eab_destination_freev (bccv); } static void |