git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5255 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-09-01 09:51:31 +00:00
parent 34b3b80daa
commit 6fdfc34954

View File

@ -141,9 +141,10 @@ gnc_table_model_set_entry_handler (TableModel *model,
int cell_type)
{
g_return_if_fail (model != NULL);
g_return_if_fail (cell_type < 0);
g_return_if_fail (cell_type >= 0);
gnc_table_model_handler_hash_insert (model->entry_handlers, cell_type,
gnc_table_model_handler_hash_insert (model->entry_handlers,
cell_type,
entry_handler);
}