* src/modest-tny-send-queue.c:
authorJose Dapena Paz <jdapena@igalia.com>
Thu, 2 Aug 2007 10:55:54 +0000 (10:55 +0000)
committerJose Dapena Paz <jdapena@igalia.com>
Thu, 2 Aug 2007 10:55:54 +0000 (10:55 +0000)
* Now it shows a "message sent" information banner on successing
  to send a message (fixes NB#63356).

pmo-trunk-r2908

src/modest-tny-send-queue.c

index 281699c..522a83a 100644 (file)
@@ -35,6 +35,7 @@
 #include <tny-camel-msg.h>
 #include <modest-tny-account.h>
 #include <modest-runtime.h>
+#include <modest-platform.h>
 #include <widgets/modest-window-mgr.h>
 #include <modest-marshal.h>
 #include <string.h> /* strcmp */
@@ -566,6 +567,8 @@ _on_msg_has_been_sent (TnySendQueue *self,
        g_queue_delete_link (priv->queue, item);
        priv->current = NULL;
 
+       modest_platform_information_banner (NULL, NULL, _("mcen_ib_message_sent"));
+
        /* free */
        g_free(msg_id);
 }