From 62570e6581bf009341e2e1e8577fc099b7a0b569 Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Sun, 20 Sep 1998 20:53:39 +0000 Subject: [PATCH] ocomment out some trash git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1200 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/Account.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/engine/Account.c b/src/engine/Account.c index 94f89c4973..a477f2128d 100644 --- a/src/engine/Account.c +++ b/src/engine/Account.c @@ -228,6 +228,9 @@ xaccAccountInsertSplit ( Account *acc, Split *split ) * the old and new accounts. Basically, both old and new accounts * must be denominated in the same currency. */ +/* +hack alert -- in fact this logic is wildly incorrect; +disable for now till we figure out what the right thing is. if (split->acc) { if (acc->currency) { if (!(split->acc->currency)) return; @@ -236,6 +239,7 @@ xaccAccountInsertSplit ( Account *acc, Split *split ) if (split->acc->currency) return; } } +*/ /* mark the account as having changed, and * the account group as requiring a save */