From 6606818b2e4b1862e1d9abe2b8d05d3e38e59ceb Mon Sep 17 00:00:00 2001 From: David Hampton Date: Thu, 5 Jan 2006 03:11:27 +0000 Subject: [PATCH] Rename function to eliminate duplicate names. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12262 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/business/business-ledger/gncEntryLedgerLoad.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/business/business-ledger/gncEntryLedgerLoad.c b/src/business/business-ledger/gncEntryLedgerLoad.c index 0ef3025749..ce6b3d8214 100644 --- a/src/business/business-ledger/gncEntryLedgerLoad.c +++ b/src/business/business-ledger/gncEntryLedgerLoad.c @@ -180,7 +180,7 @@ typedef struct { } BCE; static gpointer -load_xfer_cell_cb (Account *account, gpointer data) +load_entry_xfer_cell_cb (Account *account, gpointer data) { BCE *bce = data; GNCAccountType type; @@ -272,7 +272,7 @@ load_xfer_type_cells (GncEntryLedger *ledger) bce.cell = cell; bce.ledger_type = ledger->type; - xaccGroupForEachAccount (group, load_xfer_cell_cb, &bce, TRUE); + xaccGroupForEachAccount (group, load_entry_xfer_cell_cb, &bce, TRUE); cell = (ComboCell *) gnc_table_layout_get_cell (ledger->table->layout, ENTRY_BACCT_CELL); @@ -281,7 +281,7 @@ load_xfer_type_cells (GncEntryLedger *ledger) bce.cell = cell; bce.ledger_type = ledger->type; - xaccGroupForEachAccount (group, load_xfer_cell_cb, &bce, TRUE); + xaccGroupForEachAccount (group, load_entry_xfer_cell_cb, &bce, TRUE); } /* ===================================================================== */