From 225fbb6934a69938c75b7c4370ed8e00677d9eea Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Tue, 25 Jun 2002 04:20:53 +0000 Subject: [PATCH] Fix a typo in a function name that I didn't catch earlier git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7020 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/business/business-core/file/gnc-invoice-xml-v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/business/business-core/file/gnc-invoice-xml-v2.c b/src/business/business-core/file/gnc-invoice-xml-v2.c index 366b4ba46e..51ed835587 100644 --- a/src/business/business-core/file/gnc-invoice-xml-v2.c +++ b/src/business/business-core/file/gnc-invoice-xml-v2.c @@ -130,7 +130,7 @@ invoice_dom_tree_create (GncInvoice *invoice) xmlAddChild (ret, guid_to_dom_tree (invoice_posttxn_string, xaccTransGetGUID (txn))); - lot = gncInvoiceGetPostedlot (invoice); + lot = gncInvoiceGetPostedLot (invoice); if (lot) xmlAddChild (ret, guid_to_dom_tree (invoice_postlot_string, gnc_lot_get_guid (lot)));