X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;ds=inline;f=src%2Fmodest-tny-attachment.c;h=9fbf0ccc18c0315a8a14afc4c5cbe750cdbf4df5;hb=4c17eac51757809148b84e229bede6323aac270a;hp=19f656251bfb468de9021df0fe3bbae7b0a00805;hpb=4a2c0a363e35c5d1c673aa34ea1fddb28ddde1e5;p=modest diff --git a/src/modest-tny-attachment.c b/src/modest-tny-attachment.c index 19f6562..9fbf0cc 100644 --- a/src/modest-tny-attachment.c +++ b/src/modest-tny-attachment.c @@ -59,7 +59,7 @@ struct _ModestTnyAttachmentPrivate { gchar *mime_type; gchar *disposition; gchar *content_id; - TnyStreamIface *stream; + TnyStream *stream; }; #define MODEST_TNY_ATTACHMENT_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), \ MODEST_TYPE_TNY_ATTACHMENT, \ @@ -237,14 +237,14 @@ modest_tny_attachment_guess_mime_type (ModestTnyAttachment *self) priv->mime_type = NULL; } -static TnyStreamIface * +static TnyStream * make_stream_from_file(const gchar * filename) { return NULL; } void -modest_tny_attachment_set_stream(ModestTnyAttachment *self, TnyStreamIface *thing) +modest_tny_attachment_set_stream(ModestTnyAttachment *self, TnyStream *thing) { ModestTnyAttachmentPrivate *priv; @@ -282,13 +282,13 @@ modest_tny_attachment_free_list(GList *list) ModestTnyAttachment * -modest_tny_attachment_new_from_mime_part(TnyMimePartIface *part) +modest_tny_attachment_new_from_mime_part(TnyMimePart *part) { return NULL; } ModestTnyAttachment * -modest_tny_attachment_new_from_message(const TnyMsgIface *msg) +modest_tny_attachment_new_from_message(const TnyMsg *msg) { return NULL; }