aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-transport.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-12-21 02:45:22 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-12-21 02:45:22 +0800
commit00903a7e0f235f1825ba2c9b934e607ad77855c4 (patch)
treee3960027808c3da6f6062415b9483164ed670b38 /camel/camel-transport.c
parente97bb59a94aa28b302863c42e35e96fdf086d7cf (diff)
downloadgsoc2013-evolution-00903a7e0f235f1825ba2c9b934e607ad77855c4.tar
gsoc2013-evolution-00903a7e0f235f1825ba2c9b934e607ad77855c4.tar.gz
gsoc2013-evolution-00903a7e0f235f1825ba2c9b934e607ad77855c4.tar.bz2
gsoc2013-evolution-00903a7e0f235f1825ba2c9b934e607ad77855c4.tar.lz
gsoc2013-evolution-00903a7e0f235f1825ba2c9b934e607ad77855c4.tar.xz
gsoc2013-evolution-00903a7e0f235f1825ba2c9b934e607ad77855c4.tar.zst
gsoc2013-evolution-00903a7e0f235f1825ba2c9b934e607ad77855c4.zip
Change the prototype for camel_address_get_type to return a CamelType
2001-12-20 Jeffrey Stedfast <fejj@ximian.com> * camel-address.h: Change the prototype for camel_address_get_type to return a CamelType (since internally this is what it returns and also in case we decide to write a replacement for the current CamelObject it'd be easier to drop in). * camel-internet-address.h: Same but for camel_internet_address_get_type() * providers/smtp/camel-smtp-transport.c (smtp_send_to): Updated to use a CamelAddress of recipients. (smtp_send): Since smtp_send_to now takes a CamelAddress recipients argument, our lives have been simplified and we can now just concat To/Cc/Bcc into a recipients addr and send away. * providers/sendmail/camel-sendmail-transport.c (sendmail_send_to): Updated to use a CamelAddress of recipients. * camel-transport.c (camel_transport_send_to): Now takes a CamelAddress argument for the recipient list rather than a GList. svn path=/trunk/; revision=15197
Diffstat (limited to 'camel/camel-transport.c')
-rw-r--r--camel/camel-transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-transport.c b/camel/camel-transport.c
index 0dc56a8d67..00b2a31837 100644
--- a/camel/camel-transport.c
+++ b/camel/camel-transport.c
@@ -132,7 +132,7 @@ camel_transport_send (CamelTransport *transport, CamelMedium *message,
**/
gboolean
camel_transport_send_to (CamelTransport *transport, CamelMedium *message,
- GList *recipients, CamelException *ex)
+ CamelAddress *recipients, CamelException *ex)
{
gboolean sent;