From 9cb6a015a26778cdceccfeea4fd4db0a53507ed6 Mon Sep 17 00:00:00 2001 From: Alberto Garcia Date: Mon, 20 Aug 2007 14:40:34 +0000 Subject: [PATCH] * src/maemo/modest-progress-bar-widget.c (modest_progress_bar_cancel_current_operation): (modest_progress_bar_cancel_all_operations): Don't show the "Session cancelled" info banner as it's deprecated. Fixes NB#66135 pmo-trunk-r3018 --- src/maemo/modest-progress-bar-widget.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/maemo/modest-progress-bar-widget.c b/src/maemo/modest-progress-bar-widget.c index 161a4ad..bb1ffd0 100644 --- a/src/maemo/modest-progress-bar-widget.c +++ b/src/maemo/modest-progress-bar-widget.c @@ -330,12 +330,6 @@ modest_progress_bar_cancel_current_operation (ModestProgressObject *self) if (priv->current == NULL) return; - /* If received canceled we shall show banner */ - if (modest_mail_operation_get_type_operation (priv->current) == - MODEST_MAIL_OPERATION_TYPE_RECEIVE) - modest_platform_information_banner (NULL, NULL, - _("emev_ib_ui_pop3_msg_recv_cancel")); - modest_mail_operation_cancel (priv->current); } @@ -348,12 +342,6 @@ modest_progress_bar_cancel_all_operations (ModestProgressObject *self) me = MODEST_PROGRESS_BAR_WIDGET (self); priv = MODEST_PROGRESS_BAR_WIDGET_GET_PRIVATE (me); - /* If received canceled we shall show banner */ - if (priv->current && modest_mail_operation_get_type_operation (priv->current) == - MODEST_MAIL_OPERATION_TYPE_RECEIVE) - modest_platform_information_banner (NULL, NULL, - _("emev_ib_ui_pop3_msg_recv_cancel")); - /* Cancel all the mail operations */ modest_mail_operation_queue_cancel_all (modest_runtime_get_mail_operation_queue ()); } -- 1.7.9.5