Fix some incorrect ENTER() and LEAVE() calls.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18521 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Mike Alexander 2009-12-17 07:41:23 +00:00
parent 128c5dd195
commit 3722706edd
2 changed files with 5 additions and 4 deletions

View File

@ -388,7 +388,7 @@ gnc_quote_source_lookup_by_internal(const char * name)
return source;
}
LEAVE("Unknown source %s", name);
DEBUG("gnc_quote_source_lookup_by_internal: Unknown source %s", name);
return NULL;
}

View File

@ -827,6 +827,7 @@ gnc_table_move_cursor_internal (Table *table,
if (!gnc_table_virtual_loc_valid (table, new_virt_loc, TRUE))
{
PWARN("bad table location");
LEAVE("");
return;
}
@ -997,7 +998,7 @@ gnc_table_wrap_verify_cursor_position (Table *table, VirtualLocation virt_loc)
gnc_table_refresh_cursor_gui (table, save_loc.vcell_loc, FALSE);
}
LEAVE ("\n");
LEAVE ("");
}
void
@ -1245,7 +1246,7 @@ gnc_table_modify_update (Table *table,
cell_row = virt_loc.phys_row_offset;
cell_col = virt_loc.phys_col_offset;
ENTER ("\n");
ENTER ("");
if (!gnc_table_confirm_change (table, virt_loc))
{
@ -1338,7 +1339,7 @@ gnc_table_direct_update (Table *table,
if (!cell)
return FALSE;
ENTER ("\n");
ENTER ("");
if (cell->direct_update == NULL)
{