summaryrefslogtreecommitdiff
path: root/table_windows.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-02-19 22:33:44 -0500
committerPietro Gagliardi <[email protected]>2015-02-19 22:36:53 -0500
commit6b9f1f282fc0aeb2654538a60a6f81dd99421ae1 (patch)
treec8b231e148d6b0b4b0c5f3b40afdc3fb8fd00bb7 /table_windows.c
parent7392dca627fbcc3117a1ed264522f4b7301a1b83 (diff)
Added tableNotificationSelectionChanged on the Windows Table and hooked it up to package ui's Table.
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