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 ); */ }