Fixed typo that could make new messages count incorrect
authorMelvin Hadasht <melvin.hadasht@free.fr>
Mon, 13 Jan 2003 14:48:24 +0000 (14:48 +0000)
committerMelvin Hadasht <melvin.hadasht@free.fr>
Mon, 13 Jan 2003 14:48:24 +0000 (14:48 +0000)
ChangeLog.claws
configure.in
src/inc.c

index 0c893a466989238876b0cf48108abba654d9c826..2d8f1079a2cf7fc5ea2b35694b5ef4d6d705bab5 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-13 [melvin]    0.8.8claws93
+
+       * src/inc.c
+               Fixed typo that could make new messages count incorrect.
+
 2003-01-13 [melvin]    0.8.8claws92
 
        * src/folderview.[ch]
 2003-01-13 [melvin]    0.8.8claws92
 
        * src/folderview.[ch]
index 9f073db92616bb8007456e3aefb6558a4bfcd72e..babed6597b228312835dc1c8207cd0723d9cda4f 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=8
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=8
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws92
+EXTRA_VERSION=claws93
 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 3ed19f99524da50faf6acdf45b2874d10fca8841..69bb6545663b9e67f378000df73cd9b2e0204f16 100644 (file)
--- a/src/inc.c
+++ b/src/inc.c
@@ -367,7 +367,7 @@ void inc_all_account_mail(MainWindow *mainwin, gboolean notify)
        toolbar_main_set_sensitive(mainwin);
        main_window_set_menu_sensitive(mainwin);
 
        toolbar_main_set_sensitive(mainwin);
        main_window_set_menu_sensitive(mainwin);
 
-       new_msgs = inc_start(inc_dialog);
+       new_msgs += inc_start(inc_dialog);
        inc_finished(mainwin, new_msgs > 0);
        main_window_unlock(mainwin);
        inc_notify_cmd(new_msgs, notify);
        inc_finished(mainwin, new_msgs > 0);
        main_window_unlock(mainwin);
        inc_notify_cmd(new_msgs, notify);