From: Philip Van Hoof Date: Tue, 19 Jun 2007 07:43:02 +0000 (+0000) Subject: Question and small bugfix X-Git-Tag: git_migration_finished~3223 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=d7e2f8a69f9aff0a5fc78283a736972daca72857 Question and small bugfix pmo-trunk-r2300 --- diff --git a/src/maemo/modest-main-window.c b/src/maemo/modest-main-window.c index 4050038..8d88a75 100644 --- a/src/maemo/modest-main-window.c +++ b/src/maemo/modest-main-window.c @@ -469,7 +469,7 @@ on_sendqueue_error_happened (TnySendQueue *self, TnyHeader *header, TnyMsg *msg, gchar *str = g_strdup_printf ("%s. Do you want to remove the message (%s)?", err->message, tny_header_get_subject (header)); OnResponseInfo *info = g_slice_new (OnResponseInfo); - GtkWidget *dialog = gtk_message_dialog_new (NULL, 0, + GtkWidget *dialog = gtk_message_dialog_new (GTK_WINDOW (user_data), 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_YES_NO, str); g_free (str); info->queue = g_object_ref (self); @@ -546,6 +546,7 @@ on_account_store_connecting_finished (TnyAccountStore *store, ModestMainWindow * modest_tny_account_store_get_transport_account_for_open_connection (modest_runtime_get_account_store(), account_name)); if (account) { + /* Q: Is this the first location where the send-queues are requested? */ QueueErrorSignal *esignal = g_slice_new (QueueErrorSignal); printf ("debug: %s:\n Transport account for %s: %s\n", __FUNCTION__, account_name, tny_account_get_id(TNY_ACCOUNT(account)));