gnc_import_process_trans_item() should return TRUE in those cases

where the transaction has been processed.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14595 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2006-08-06 00:59:23 +00:00
parent e1a44e071c
commit 2e4fbf692f
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2006-08-05 David Hampton <hampton@employees.org>
* 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:

View File

@ -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;