src/procmsg.[ch]
authorMelvin Hadasht <melvin.hadasht@free.fr>
Sun, 12 May 2002 16:45:22 +0000 (16:45 +0000)
committerMelvin Hadasht <melvin.hadasht@free.fr>
Sun, 12 May 2002 16:45:22 +0000 (16:45 +0000)
Removed unneeded priority code introduced by the previous
commit.

ChangeLog.claws
configure.in
src/procmsg.c
src/procmsg.h

index fbcbc460875b1323e74b25dd7d400499ceb492b1..37bd9ec07c095be67612f5e626a996d2d480a379 100644 (file)
@@ -1,8 +1,14 @@
+2002-05-12 [melvin]    0.7.5claws22
+
+       * src/procmsg.[ch]
+               Removed unneeded priority code introduced by the previous 
+               commit.
+
 2002-05-12 [melvin]    0.7.5claws21
 
        * src/compose.[ch]
                Added possibility to set message's priority.
 2002-05-12 [melvin]    0.7.5claws21
 
        * src/compose.[ch]
                Added possibility to set message's priority.
-       *  src/procmsg.[ch]
+       * src/procmsg.[ch]
                Added possibility to set message's priority.
                Added missing headers
 
                Added possibility to set message's priority.
                Added missing headers
 
index a048eb2e83e67f5a4170888fdb0188a74678131f..a14b4d04bc12b738034b1ceb5e4192f74fe8381c 100644 (file)
@@ -8,7 +8,7 @@ MINOR_VERSION=7
 MICRO_VERSION=5
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=5
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws21
+EXTRA_VERSION=claws22
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 42a153abe876e432f68cf3932b42023d97850b4a..193899dc848222f52ac2449c9f6ae9ffbf86ced7 100644 (file)
@@ -246,7 +246,6 @@ GSList *procmsg_read_cache(FolderItem *item, gboolean scan_file)
                READ_CACHE_DATA(msginfo->references, fp);
                 READ_CACHE_DATA(msginfo->xref, fp);
 
                READ_CACHE_DATA(msginfo->references, fp);
                 READ_CACHE_DATA(msginfo->xref, fp);
 
-               READ_CACHE_DATA_INT(msginfo->priority, fp);
 
                MSG_SET_PERM_FLAGS(msginfo->flags, default_flags.perm_flags);
                MSG_SET_TMP_FLAGS(msginfo->flags, default_flags.tmp_flags);
 
                MSG_SET_PERM_FLAGS(msginfo->flags, default_flags.perm_flags);
                MSG_SET_TMP_FLAGS(msginfo->flags, default_flags.tmp_flags);
@@ -393,7 +392,6 @@ void procmsg_write_cache(MsgInfo *msginfo, FILE *fp)
        WRITE_CACHE_DATA(msginfo->references, fp);
        WRITE_CACHE_DATA(msginfo->xref, fp);
 
        WRITE_CACHE_DATA(msginfo->references, fp);
        WRITE_CACHE_DATA(msginfo->xref, fp);
 
-       WRITE_CACHE_DATA_INT(msginfo->priority, fp);
 }
 
 void procmsg_write_flags(MsgInfo *msginfo, FILE *fp)
 }
 
 void procmsg_write_flags(MsgInfo *msginfo, FILE *fp)
@@ -1077,8 +1075,6 @@ MsgInfo *procmsg_msginfo_copy(MsgInfo *msginfo)
        MEMBCOPY(score);
        MEMBCOPY(threadscore);
 
        MEMBCOPY(score);
        MEMBCOPY(threadscore);
 
-       MEMBCOPY(priority);
-
        return newmsginfo;
 }
 
        return newmsginfo;
 }
 
index b40978e52f0b6b6ab38d8a6c1ef62970cfc65ba7..f0e4b216499b4dde2647134c0e80b228748854f4 100644 (file)
@@ -200,8 +200,6 @@ struct _MsgInfo
        /* used only for encrypted messages */
        gchar *plaintext_file;
        guint decryption_failed : 1;
        /* used only for encrypted messages */
        gchar *plaintext_file;
        guint decryption_failed : 1;
-
-       gint priority;
 };
 
 GHashTable *procmsg_msg_hash_table_create      (GSList         *mlist);
 };
 
 GHashTable *procmsg_msg_hash_table_create      (GSList         *mlist);