From 116ee4130b800098be39b45acd5c2b77dcc7905c Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Thu, 28 Nov 2002 17:52:26 +0000 Subject: [PATCH] 2002-11-28 Christian Stimming * src/import-export/gnc-gen-transaction.c: Use add_threshold instead of clear_threshold to determine default txn action. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7567 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 13 ++++++++++++- src/import-export/gnc-gen-transaction.c | 4 ++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2fa5e63cc1..9444d5c6bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2002-11-28 Christian Stimming + * src/import-export/gnc-gen-transaction.c: Use add_threshold + instead of clear_threshold to determine default txn action. + * src/import-export/hbci/gnc-hbci-gettrans.c: Give correct feedback when no transactions are there. @@ -7,8 +10,16 @@ importer window. 2002-11-27 Benoit Grégoire + * Makefile.am configure.in src/doc/Makefile.am - src/doc/doxygen.cfg src/doc/doxygen_main_page.c: Added doxygen documentation support, and integrated it into the build system. There is a new target, make doc, that can be used to build the documentation if you have doxygen installed. Any file in the src tree will be included in the documentation if it follows doxygen conventions. The doc created in src/doc/html. Doxygen is now required for make dist. + src/doc/doxygen.cfg src/doc/doxygen_main_page.c: Added doxygen + documentation support, and integrated it into the build system. + There is a new target, make doc, that can be used to build the + documentation if you have doxygen installed. Any file in the src + tree will be included in the documentation if it follows doxygen + conventions. The doc created in src/doc/html. Doxygen is now + required for make dist. + * src/import-export/: Enable doxygen documentation. 2002-11-27 Christian Stimming diff --git a/src/import-export/gnc-gen-transaction.c b/src/import-export/gnc-gen-transaction.c index 30a57ddf00..5050afcac6 100644 --- a/src/import-export/gnc-gen-transaction.c +++ b/src/import-export/gnc-gen-transaction.c @@ -398,8 +398,8 @@ void gnc_gen_trans_add_trans(GNCGenTransaction *gui, Transaction *trans) transaction_info = gnc_import_TransInfo_new(trans, NULL); gnc_import_TransInfo_init_matches (transaction_info, - gui->clear_threshold, - gui->clear_threshold, + gui->add_threshold, + gui->add_threshold, gui->display_threshold, gnc_gen_trans_get_fuzzy_amount (gui));