From: Dirk-Jan C. Binnema Date: Sun, 20 May 2007 16:19:13 +0000 (+0000) Subject: * update for tinymail API change X-Git-Tag: git_migration_finished~3552 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=f75609023085787e25255cefea5155039a733867 * update for tinymail API change pmo-trunk-r1929 --- diff --git a/src/modest-tny-account-store.c b/src/modest-tny-account-store.c index a2efc2e..3364c4d 100644 --- a/src/modest-tny-account-store.c +++ b/src/modest-tny-account-store.c @@ -639,7 +639,7 @@ modest_tny_account_store_find_account_by_url (TnyAccountStore *self, const gchar static gboolean modest_tny_account_store_alert (TnyAccountStore *self, TnyAlertType type, - const GError *error) + gboolean question, const GError *error) { g_return_val_if_fail (error, FALSE); @@ -710,11 +710,21 @@ modest_tny_account_store_alert (TnyAccountStore *self, TnyAlertType type, if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_YES) retval = TRUE; +#ifdef MODEST_PLATFORM_MAEMO + /* FIXME: for mameo, assume it's ok; thus, we can get passed + * SSL cert notes etc. + */ + retval = TRUE; +#endif /*MODEST_PLATFORM_MAEMO*/ + + gtk_widget_destroy (dialog); /* TODO: Don't free this when we no longer strdup the message for testers. */ g_free (prompt); + + return retval; }