From 073f606c096226ed274cc6423633e999ae4569dc Mon Sep 17 00:00:00 2001 From: Dave Peticolas Date: Mon, 27 Nov 2000 23:40:30 +0000 Subject: [PATCH] Conrad Canterford's register fix. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3198 57a11ea4-9604-0410-9ed3-97b8803252fd --- AUTHORS | 1 + doc/sgml/C/xacc-about.sgml | 9 +++++++++ src/MultiLedger.c | 3 +++ 3 files changed, 13 insertions(+) diff --git a/AUTHORS b/AUTHORS index e1fb13a924..4783df97a0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -48,6 +48,7 @@ Per Bojsen several core dump fixes Terry Boldt financial calculator and expression parser Simon Britnell patch to RPM spec Christopher B. Browne for perl and lots of scheme +Conrad Canterford register bug fix Bill Carlson performance improvements Graham Chapman for the xacc-rpts addon package George Chen for MS-Money QIF's & fixes diff --git a/doc/sgml/C/xacc-about.sgml b/doc/sgml/C/xacc-about.sgml index 4da8ca61dc..680bb10466 100644 --- a/doc/sgml/C/xacc-about.sgml +++ b/doc/sgml/C/xacc-about.sgml @@ -329,6 +329,7 @@ provide an accurate Profit & Loss statement. patch to RPM spec + Christopher B. Browne @@ -338,8 +339,16 @@ provide an accurate Profit & Loss statement. code + +conrad@mail.watersprite.com.au Conrad + Canterford + +register bug fix + + + wwc@wwcnet.nu Bill Carlson diff --git a/src/MultiLedger.c b/src/MultiLedger.c index 77906e9335..a2cb30cfb7 100644 --- a/src/MultiLedger.c +++ b/src/MultiLedger.c @@ -211,7 +211,10 @@ xaccLedgerDisplayAccGroup (Account *account) { le_type = xaccAccountGetType (node->data); if ((STOCK == le_type) || (MUTUAL == le_type)) + { ledger_type = PORTFOLIO_LEDGER; + break; + } } break;