Fixed error in updateAll().

This commit is contained in:
Pietro Gagliardi 2015-02-05 01:03:04 -05:00
parent 3a742b136a
commit d7c6fc0a7f
1 changed files with 1 additions and 1 deletions

View File

@ -48,6 +48,6 @@ static void update(struct table *t, BOOL redraw)
static void updateAll(struct table *t)
{
update(t, TRUE);
if (InvalidateRect(t, NULL, TRUE) == 0)
if (InvalidateRect(t->hwnd, NULL, TRUE) == 0)
panic("error queueing all of Table for redraw in updateAll()");
}