[grisbi-cvs] [SCM] grisbi branch, master, updated. upstream_version_0_7_99-11-gbfbce89

Pierre Biava nobody at users.sourceforge.net
Fri Jan 28 21:51:56 CET 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "grisbi".

The branch, master has been updated
       via  bfbce890320ec6e00335d18fe1943e3ef4686ba2 (commit)
       via  f4795ea7650b0f1e94243529538c9ea3225effb2 (commit)
      from  fc149b44201d653bae3f543de7a6d16321aa8fd7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit bfbce890320ec6e00335d18fe1943e3ef4686ba2
Merge: f4795ea7650b0f1e94243529538c9ea3225effb2 fc149b44201d653bae3f543de7a6d16321aa8fd7
Author: pbiava <pierre.biava at nerim.net>
Date:   Fri Jan 28 21:50:32 2011 +0100

    Merge branches 'master' and 'master' of ssh://grisbi.git.sourceforge.net/gitroot/grisbi/grisbi

commit f4795ea7650b0f1e94243529538c9ea3225effb2
Merge: ea0a3deb408d39add063d19c0ed56bc386d20509 25a9770ebce7c5b17bd7b6ed6fc9eb9714e988da
Author: pbiava <pierre.biava at nerim.net>
Date:   Mon Jan 24 21:38:52 2011 +0100

    Fixed a calculation error of start date historical data

-----------------------------------------------------------------------

Changes:
diff --git a/src/bet_hist.c b/src/bet_hist.c
index 4107847..5e5ba40 100644
--- a/src/bet_hist.c
+++ b/src/bet_hist.c
@@ -722,7 +722,7 @@ void bet_historical_populate_data ( gint account_number )
 
         date = gsb_data_transaction_get_date ( transaction_number );
         /* ignore transaction which are before date_min */
-        if ( g_date_compare ( date, date_min ) <= 0 )
+        if ( g_date_compare ( date, date_min ) < 0 )
             continue;
 
         /* ignore transaction which is after date_jour */


hooks/post-receive
-- 
grisbi


More information about the cvs mailing list