mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-29 20:24:25 -06:00
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:
parent
e1a44e071c
commit
2e4fbf692f
@ -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:
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user