From 0a0156166652b8267f6beff8b22b22d4835a5593 Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Wed, 14 Jan 1998 08:29:39 +0000 Subject: [PATCH] quickfill belongs in the gui, not in the account git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@431 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/Account.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Account.c b/src/Account.c index 1f965f103f..386cde7a1b 100644 --- a/src/Account.c +++ b/src/Account.c @@ -80,7 +80,6 @@ mallocAccount( void ) acc->adjBData = NULL; acc->editAccData = NULL; acc->editNotesData = NULL; - acc->qfRoot = mallocQuickFill(); return acc; } @@ -104,8 +103,6 @@ freeAccount( Account *acc ) XtFree(acc->description); XtFree(acc->notes); - freeQuickFill(acc->qfRoot); - /* any split pointing at this account needs to be unmarked */ i=0; s = acc->splits[0]; @@ -239,7 +236,8 @@ xaccInsertSplit ( Account *acc, Split *split ) _free(oldsplits); - qfInsertTransaction( acc->qfRoot, trans ); + /* hack alert -- quickfill belong in gui */ + /* qfInsertTransaction( acc->qfRoot, trans ); */ }