Patch from Matt McCutchen 2 <matt@mattmccutchen.net>: Fix for bug #503922 (Fix typo...
authorSuman Manjunath <msuman@src.gnome.org>
Mon, 7 Jul 2008 09:03:23 +0000 (09:03 +0000)
committerSuman Manjunath <msuman@src.gnome.org>
Mon, 7 Jul 2008 09:03:23 +0000 (09:03 +0000)
svn path=/trunk/; revision=9097

camel/ChangeLog
camel/camel-folder-summary.c

index 81205d6..d0eb2a8 100644 (file)
@@ -1,3 +1,9 @@
+2008-07-07  Matt McCutchen 2  <matt@mattmccutchen.net>
+
+       ** Fix for bug #503922
+
+       * camel-folder-summary.c: Fix typo in mapping flag name "draft".
+
 2008-07-02  Jeffrey Stedfast  <fejj@novell.com>
 
        * camel-folder.c (camel_folder_sort_uids): New method to sort an
index 62e81d1..15406e0 100644 (file)
@@ -2694,7 +2694,7 @@ static struct flag_names_t {
 } flag_names[] = {
        { "answered", CAMEL_MESSAGE_ANSWERED },
        { "deleted", CAMEL_MESSAGE_DELETED },
-       { "draft", CAMEL_MESSAGE_DELETED },
+       { "draft", CAMEL_MESSAGE_DRAFT },
        { "flagged", CAMEL_MESSAGE_FLAGGED },
        { "seen", CAMEL_MESSAGE_SEEN },
        { "attachments", CAMEL_MESSAGE_ATTACHMENTS },