From c8f49d22c798815e6812710a51eeca02fa2a4dff Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Sun, 14 Dec 1997 05:59:03 +0000 Subject: [PATCH] some split notes git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@333 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/Account.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Account.c b/src/Account.c index 55f0e0bd82..f1839f111f 100644 --- a/src/Account.c +++ b/src/Account.c @@ -237,6 +237,8 @@ removeTransaction( Account *acc, int num ) if (((Account *)trans->credit) == acc) trans->credit = NULL; if (((Account *)trans->debit) == acc) trans->debit = NULL; + /* hack alert -- we should alos remove splits from accounts */ + return trans; }