* src/folder.c
authorChristoph Hohmann <reboot@gmx.ch>
Tue, 17 Sep 2002 12:19:16 +0000 (12:19 +0000)
committerChristoph Hohmann <reboot@gmx.ch>
Tue, 17 Sep 2002 12:19:16 +0000 (12:19 +0000)
        initialize max values for cache and folder
        when cache or folder is empty

ChangeLog.claws
TODO.claws
configure.in
src/folder.c

index e8ccd2293843f8d05069fa563f9355d86adf58f5..4041eff06c625258acc25e2d53a042c3b705edff 100644 (file)
@@ -1,3 +1,9 @@
+2002-09-17 [christoph] 0.8.2claws54
+
+       * src/folder.c
+               initialize max values for cache and folder
+               when cache or folder is empty
+
 2002-09-15 [colin]     0.8.2claws53
 
        * src/compose.c
 2002-09-15 [colin]     0.8.2claws53
 
        * src/compose.c
index 92a08345fef8bfa8b9c5219d34b8cc3bd2ee227f..2fd1df6f49d21950e45d7ccc3f06ee1c73fb7967 100644 (file)
@@ -40,6 +40,8 @@ win32 0.8.0claws+
        o PEM support (S/MIME)
        o add new messages to the summaryview without reloading the
          whole list
        o PEM support (S/MIME)
        o add new messages to the summaryview without reloading the
          whole list
+       o use template system for signatures/reply and forward format
+         (template selectable globally, in account prefs or folder prefs)
 
 [paul]
 
 
 [paul]
 
index 42306043b4f9d4a29baa04eb143ec5e5217b7cea..299e3187f94a170ed9ba18bbcc12328517964ad2 100644 (file)
@@ -8,7 +8,7 @@ MINOR_VERSION=8
 MICRO_VERSION=2
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=2
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws53
+EXTRA_VERSION=claws54
 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 b91fa29f2befbc07f4f5664eb49dd8117c437007..56f62db9e843a0f7175724a5e7764a5f8fb4eaf4 100644 (file)
@@ -934,8 +934,10 @@ gint folder_item_scan(FolderItem *item)
                cache_cur_num = ((MsgInfo *)cache_list_cur->data)->msgnum;
                cache_list_last = g_slist_last(cache_list);
                cache_max_num = ((MsgInfo *)cache_list_last->data)->msgnum;
                cache_cur_num = ((MsgInfo *)cache_list_cur->data)->msgnum;
                cache_list_last = g_slist_last(cache_list);
                cache_max_num = ((MsgInfo *)cache_list_last->data)->msgnum;
-       } else
+       } else {
                cache_cur_num = G_MAXINT;
                cache_cur_num = G_MAXINT;
+               cache_max_num = 0;
+       }
 
        if (folder_list_cur != NULL) {
                GSList *folder_list_last;
 
        if (folder_list_cur != NULL) {
                GSList *folder_list_last;
@@ -943,8 +945,10 @@ gint folder_item_scan(FolderItem *item)
                folder_cur_num = GPOINTER_TO_INT(folder_list_cur->data);
                folder_list_last = g_slist_last(folder_list);
                folder_max_num = GPOINTER_TO_INT(folder_list_last->data);
                folder_cur_num = GPOINTER_TO_INT(folder_list_cur->data);
                folder_list_last = g_slist_last(folder_list);
                folder_max_num = GPOINTER_TO_INT(folder_list_last->data);
-       } else
+       } else {
                folder_cur_num = G_MAXINT;
                folder_cur_num = G_MAXINT;
+               folder_max_num = 0;
+       }
 
        while ((cache_cur_num != G_MAXINT) || (folder_cur_num != G_MAXINT)) {
                /*
 
        while ((cache_cur_num != G_MAXINT) || (folder_cur_num != G_MAXINT)) {
                /*