X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-account-protocol.c;fp=src%2Fmodest-account-protocol.c;h=c9cdbb8d0d752e63c4518b79940dd3d9bdd42e6e;hp=bd298ade7dc9451a6d168cf99990f63ba0d512fa;hb=77279a928905bb344342d4d12bc5c0275c1ced27;hpb=4306fe319d2e238ee2f99bc1420623b25b1dfdd6 diff --git a/src/modest-account-protocol.c b/src/modest-account-protocol.c index bd298ad..c9cdbb8 100644 --- a/src/modest-account-protocol.c +++ b/src/modest-account-protocol.c @@ -89,6 +89,7 @@ modest_account_protocol_get_wizard_response_override_default (ModestAccountProto static void modest_account_protocol_check_support_default (ModestAccountProtocol *self, ModestAccountProtocolCheckSupportFunc func, gpointer userdata); +static void modest_account_protocol_cancel_check_support_default (ModestAccountProtocol *self); static gboolean modest_account_protocol_is_supported_default (ModestAccountProtocol *self); static gchar *modest_account_protocol_get_from_default (ModestAccountProtocol *self, const gchar *account_id, @@ -205,6 +206,8 @@ modest_account_protocol_class_init (ModestAccountProtocolClass *klass) modest_account_protocol_is_supported_default; account_class->check_support = modest_account_protocol_check_support_default; + account_class->cancel_check_support = + modest_account_protocol_cancel_check_support_default; account_class->get_from = modest_account_protocol_get_from_default; account_class->get_from_list = @@ -657,6 +660,18 @@ modest_account_protocol_check_support (ModestAccountProtocol *self, MODEST_ACCOUNT_PROTOCOL_GET_CLASS (self)->check_support (self, func, userdata); } +static void +modest_account_protocol_cancel_check_support_default (ModestAccountProtocol *self) +{ + return; +} + +void +modest_account_protocol_cancel_check_support (ModestAccountProtocol *self) +{ + MODEST_ACCOUNT_PROTOCOL_GET_CLASS (self)->cancel_check_support (self); +} + gchar * modest_account_protocol_get_from (ModestAccountProtocol *self, const gchar *account_id,