diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-09-21 11:13:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-09-28 23:35:55 +0800 |
commit | 31b57ed0383b2ea225195d4b72a872f7f2d93163 (patch) | |
tree | 2d70adcce04ed1ed5111c06cd7ad93266419b0e0 /mail/em-sync-stream.c | |
parent | a91eeb647138ee035444cdc3c265fa4e95898f29 (diff) | |
download | gsoc2013-evolution-31b57ed0383b2ea225195d4b72a872f7f2d93163.tar.gz gsoc2013-evolution-31b57ed0383b2ea225195d4b72a872f7f2d93163.tar.zst gsoc2013-evolution-31b57ed0383b2ea225195d4b72a872f7f2d93163.zip |
Adapt to Camel API changes.
Diffstat (limited to 'mail/em-sync-stream.c')
-rw-r--r-- | mail/em-sync-stream.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/em-sync-stream.c b/mail/em-sync-stream.c index bb5a21808e..9c52cd703b 100644 --- a/mail/em-sync-stream.c +++ b/mail/em-sync-stream.c @@ -141,6 +141,7 @@ static gssize sync_stream_write (CamelStream *stream, const gchar *string, gsize len, + GCancellable *cancellable, GError **error) { EMSyncStream *emss = EM_SYNC_STREAM (stream); @@ -168,6 +169,7 @@ sync_stream_write (CamelStream *stream, static gint sync_stream_flush (CamelStream *stream, + GCancellable *cancellable, GError **error) { EMSyncStream *emss = EM_SYNC_STREAM (stream); @@ -189,6 +191,7 @@ sync_stream_flush (CamelStream *stream, static gint sync_stream_close (CamelStream *stream, + GCancellable *cancellable, GError **error) { EMSyncStream *emss = EM_SYNC_STREAM (stream); |