CBBrowne's fixes

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@761 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-03-31 07:36:56 +00:00
parent b257bb9a2a
commit 44979f6669

View File

@ -619,9 +619,14 @@ char * xaccReadQIFTransaction (int fd, Account *acc)
/* C == Cleared / Reconciled */
if ('C' == qifline [0]) {
/* Quicken uses C* and Cx, while MS Money uses CX.
* I don't know what * and x are supposed to differentiate
* C* means cleared (but not yet reconciled)
* Cx or CX means reconciled
*/
xaccTransSetReconcile (trans, CREC);
if (('x' == qifline[1]) || ('X' == qifline[1])) {
xaccTransSetReconcile (trans, YREC);
} else {
xaccTransSetReconcile (trans, CREC);
}
} else
/* D == date */