* 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
This commit is contained in:
Derek Atkins
2002-11-04 05:04:51 +00:00
parent 695d717094
commit 2db34dcb9f
2 changed files with 12 additions and 0 deletions

View File

@@ -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 <stimming@tuhh.de>

View File

@@ -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);