mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
b257bb9a2a
commit
44979f6669
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user