From d7c6fc0a7fbbd3f0a67eb7c8821e89ce5b118f7f Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 5 Feb 2015 01:03:04 -0500 Subject: Fixed error in updateAll(). --- wintable/update.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wintable/update.h') diff --git a/wintable/update.h b/wintable/update.h index edf4b40..dae4811 100644 --- a/wintable/update.h +++ b/wintable/update.h @@ -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()"); } -- cgit v1.2.3