diff --git a/ChangeLog b/ChangeLog index 01772bc7a6..fd5ab81e19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-08-05 David Hampton + * import-backend.c: gnc_import_process_trans_item() should return + TRUE in those cases where the transaction has been processed. + * src/core-utils/gnc-gtk-utils.[ch]: * src/core-utils/gnc-gtk-utils.h: * src/import-export/import-main-matcher.c: diff --git a/src/import-export/import-backend.c b/src/import-export/import-backend.c index 18f820ea05..ea15123e65 100644 --- a/src/import-export/import-backend.c +++ b/src/import-export/import-backend.c @@ -875,7 +875,7 @@ gnc_import_process_trans_item (GncImportMatchMap *matchmap, /* Done editing. */ xaccTransCommitEdit (gnc_import_TransInfo_get_trans (trans_info)); - break; + return TRUE; case GNCImport_CLEAR: { GNCImportMatchInfo *selected_match = gnc_import_TransInfo_get_selected_match (trans_info); @@ -932,7 +932,7 @@ gnc_import_process_trans_item (GncImportMatchMap *matchmap, trans_info->trans = NULL; } } - break; + return TRUE; case GNCImport_EDIT: PERR("EDIT action is UNSUPPORTED!"); break;