From e129368a3e2973c9492b9806c33ad30c25edca66 Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Tue, 8 Sep 2009 13:07:08 +0200 Subject: [PATCH] Improved the output of modest_mail_operation_to_string --- src/modest-mail-operation.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modest-mail-operation.c b/src/modest-mail-operation.c index 90d1943..12944e6 100644 --- a/src/modest-mail-operation.c +++ b/src/modest-mail-operation.c @@ -3819,12 +3819,14 @@ modest_mail_operation_to_string (ModestMailOperation *self) switch (priv->op_type) { case MODEST_MAIL_OPERATION_TYPE_SEND: type= "SEND"; break; + case MODEST_MAIL_OPERATION_TYPE_SEND_AND_RECEIVE: type= "SEND-AND-RECEIVE"; break; case MODEST_MAIL_OPERATION_TYPE_RECEIVE: type= "RECEIVE"; break; case MODEST_MAIL_OPERATION_TYPE_OPEN: type= "OPEN"; break; case MODEST_MAIL_OPERATION_TYPE_DELETE: type= "DELETE"; break; case MODEST_MAIL_OPERATION_TYPE_INFO: type= "INFO"; break; case MODEST_MAIL_OPERATION_TYPE_RUN_QUEUE: type= "RUN-QUEUE"; break; case MODEST_MAIL_OPERATION_TYPE_SYNC_FOLDER: type= "SYNC-FOLDER"; break; + case MODEST_MAIL_OPERATION_TYPE_SHUTDOWN: type= "SHUTDOWN"; break; case MODEST_MAIL_OPERATION_TYPE_UNKNOWN: type= "UNKNOWN"; break; default: type = "UNEXPECTED"; break; } -- 1.7.9.5