X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-account-protocol.c;h=203edfc21dff31f513a8ab2c6f06451564c35585;hp=ef8c3ee0bc65da0b5f5a478542b3826202a15864;hb=eaa47d5033f37d2210cb277919b8239d13dc000d;hpb=d669ccb2e5fbf01c444fafba7f9c408609aa55bd diff --git a/src/modest-account-protocol.c b/src/modest-account-protocol.c index ef8c3ee..203edfc 100644 --- a/src/modest-account-protocol.c +++ b/src/modest-account-protocol.c @@ -96,7 +96,8 @@ static ModestPairList *modest_account_protocol_get_from_list_default (ModestAcco const gchar *account_id); static gchar *modest_account_protocol_get_signature_default (ModestAccountProtocol *self, const gchar *account_id, - const gchar *mailbox); + const gchar *mailbox, + gboolean *has_signature); /* globals */ @@ -663,16 +664,21 @@ modest_account_protocol_get_from_list_default (ModestAccountProtocol *self, gchar * modest_account_protocol_get_signature (ModestAccountProtocol *self, const gchar *account_id, - const gchar *mailbox) + const gchar *mailbox, + gboolean *has_signature) { - return MODEST_ACCOUNT_PROTOCOL_GET_CLASS (self)->get_signature (self, account_id, mailbox); + return MODEST_ACCOUNT_PROTOCOL_GET_CLASS (self)->get_signature (self, account_id, mailbox, has_signature); } + static gchar * modest_account_protocol_get_signature_default (ModestAccountProtocol *self, const gchar *account_id, - const gchar *mailbox) + const gchar *mailbox, + gboolean *has_signature) { g_return_val_if_fail (MODEST_ACCOUNT_PROTOCOL (self), NULL); + if (has_signature) + *has_signature = FALSE; return NULL; }