X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-account-protocol.c;h=c527d43d55b6992bd50ac869fe40f9a8fa5b7965;hp=c9cdbb8d0d752e63c4518b79940dd3d9bdd42e6e;hb=0425b29cb50af02997febaa2a725898a2c871535;hpb=77279a928905bb344342d4d12bc5c0275c1ced27 diff --git a/src/modest-account-protocol.c b/src/modest-account-protocol.c index c9cdbb8..c527d43 100644 --- a/src/modest-account-protocol.c +++ b/src/modest-account-protocol.c @@ -90,6 +90,7 @@ static void modest_account_protocol_check_support_default (ModestAccountProtocol ModestAccountProtocolCheckSupportFunc func, gpointer userdata); static void modest_account_protocol_cancel_check_support_default (ModestAccountProtocol *self); +static void modest_account_protocol_wizard_finished_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, @@ -208,6 +209,8 @@ modest_account_protocol_class_init (ModestAccountProtocolClass *klass) modest_account_protocol_check_support_default; account_class->cancel_check_support = modest_account_protocol_cancel_check_support_default; + account_class->wizard_finished = + modest_account_protocol_wizard_finished_default; account_class->get_from = modest_account_protocol_get_from_default; account_class->get_from_list = @@ -672,6 +675,18 @@ modest_account_protocol_cancel_check_support (ModestAccountProtocol *self) MODEST_ACCOUNT_PROTOCOL_GET_CLASS (self)->cancel_check_support (self); } +static void +modest_account_protocol_wizard_finished_default (ModestAccountProtocol *self) +{ + return; +} + +void +modest_account_protocol_wizard_finished (ModestAccountProtocol *self) +{ + MODEST_ACCOUNT_PROTOCOL_GET_CLASS (self)->wizard_finished (self); +} + gchar * modest_account_protocol_get_from (ModestAccountProtocol *self, const gchar *account_id,