summaryrefslogtreecommitdiff
path: root/table_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'table_windows.go')
-rw-r--r--table_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/table_windows.go b/table_windows.go
index ceca0eb..8cd28c5 100644
--- a/table_windows.go
+++ b/table_windows.go
@@ -78,7 +78,7 @@ func (t *table) Selected() int {
func (t *table) Select(index int) {
t.RLock()
defer t.RUnlock()
-//TODO C.tableSelectItem(t.hwnd, C.intptr_t(index))
+ C.tableSelectItem(t.hwnd, C.intptr_t(index))
}
func (t *table) OnSelected(f func()) {