X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fwidgets%2Fmodest-msg-view.c;h=bcbf561e170132c5d27fbd7197961d955a458865;hb=d6c0ce729e5b3ac9eccf3ee838fe32aa3e982497;hp=ac28fa59bb0e20fa8c95bce9dedece3a0379821a;hpb=0e353b4adf22acc768bfa62ebcba2faab0bfc3b9;p=modest diff --git a/src/widgets/modest-msg-view.c b/src/widgets/modest-msg-view.c index ac28fa5..bcbf561 100644 --- a/src/widgets/modest-msg-view.c +++ b/src/widgets/modest-msg-view.c @@ -43,6 +43,12 @@ enum { }; static guint signals[LAST_SIGNAL] = {0}; +void +modest_msg_view_set_msg_with_other_body (ModestMsgView *self, TnyMsg *msg, TnyMimePart *part) +{ + return MODEST_MSG_VIEW_GET_IFACE (self)->set_msg_with_other_body_func (self, msg, part); +} + GtkAdjustment* modest_msg_view_get_vadjustment (ModestMsgView *self) { @@ -122,6 +128,12 @@ modest_msg_view_remove_attachment (ModestMsgView *self, TnyMimePart *attachment) } void +modest_msg_view_set_branding (ModestMsgView *self, const gchar *brand_name, const GdkPixbuf *brand_icon) +{ + MODEST_MSG_VIEW_GET_IFACE (self)->set_branding_func (self, brand_name, brand_icon); +} + +void modest_msg_view_request_fetch_images (ModestMsgView *self) { MODEST_MSG_VIEW_GET_IFACE (self)->request_fetch_images_func (self);