summaryrefslogtreecommitdiff
path: root/table_windows.c
diff options
context:
space:
mode:
Diffstat (limited to 'table_windows.c')
-rw-r--r--table_windows.c4
1 files changed, 3 insertions, 1 deletions
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