From 2db34dcb9f6214f77c745329eb58148448ab622a Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Mon, 4 Nov 2002 05:04:51 +0000 Subject: [PATCH] * business/business-ledger/gncEntryLedgerLoad.c -- set the account completion character for the account cells. Fixes bug #97098 git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7436 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 3 +++ src/business/business-ledger/gncEntryLedgerLoad.c | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index d5d46325f6..0384bb404c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,9 @@ * gnome-utils/dialog-account.c: change the BeginEdit() call on the (temporary) top-level account, so the SQL backend doesn't hate us for committing and account without a commodity. + + * business/business-ledger/gncEntryLedgerLoad.c -- set the account + completion character for the account cells. Fixes bug #97098 2002-11-03 Christian Stimming diff --git a/src/business/business-ledger/gncEntryLedgerLoad.c b/src/business/business-ledger/gncEntryLedgerLoad.c index 6c9bbd03ff..a97f129ab9 100644 --- a/src/business/business-ledger/gncEntryLedgerLoad.c +++ b/src/business/business-ledger/gncEntryLedgerLoad.c @@ -383,6 +383,15 @@ void gnc_entry_ledger_load (GncEntryLedger *ledger, GList *entry_list) /* Show_entry ??? */ /* Set completion character */ + gnc_combo_cell_set_complete_char + ((ComboCell *) + gnc_table_layout_get_cell (table->layout, ENTRY_IACCT_CELL), + gnc_get_account_separator ()); + + gnc_combo_cell_set_complete_char + ((ComboCell *) + gnc_table_layout_get_cell (table->layout, ENTRY_BACCT_CELL), + gnc_get_account_separator ()); /* enable callback for cursor user-driven moves */ gnc_table_control_allow_move (table->control, TRUE);