mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix bug in is_trans_empty - check kvp data.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5750 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
64af176379
commit
b9f6eb414d
@ -79,6 +79,7 @@ is_trans_empty (Transaction *trans)
|
||||
if ('n' != xaccSplitGetReconcile(s)) return FALSE;
|
||||
if (0 != (xaccSplitGetMemo(s))[0]) return FALSE;
|
||||
if (0 != (xaccSplitGetAction(s))[0]) return FALSE;
|
||||
if (TRUE != (kvp_frame_is_empty (xaccSplitGetSlots(s)))) return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user