mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Rename function to eliminate duplicate names.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12262 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
/* ===================================================================== */
|
||||
|
||||
Reference in New Issue
Block a user