From 6b9f1f282fc0aeb2654538a60a6f81dd99421ae1 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 19 Feb 2015 22:33:44 -0500 Subject: Added tableNotificationSelectionChanged on the Windows Table and hooked it up to package ui's Table. --- table_windows.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'table_windows.c') diff --git a/table_windows.c b/table_windows.c index dbbcde2..8d92a8e 100644 --- a/table_windows.c +++ b/table_windows.c @@ -30,7 +30,9 @@ static LRESULT CALLBACK tableSubProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM case tableNotificationCellCheckboxToggled: tableToggled(gotable, tnm->row, tnm->column); return 0; - // TODO selection changed + case tableNotificationSelectionChanged: + tableSelectionChanged(gotable); + return 0; } return (*fv_DefSubclassProc)(hwnd, uMsg, wParam, lParam); /* TODO -- cgit v1.2.3