summaryrefslogtreecommitdiff
path: root/redo/table.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-18 02:58:30 -0400
committerPietro Gagliardi <[email protected]>2014-08-18 02:58:30 -0400
commita8f711dfad63c5b1949439ac33ab4a162ab90ded (patch)
tree29253de6cdb543d15969cfd0ec1894b877310c98 /redo/table.go
parent58e95f239940c646dce75c2b978d077884b7d215 (diff)
Implemented Table.Selected()/Select() on GTK+, more TODOs, and a quick Windows fix.
Diffstat (limited to 'redo/table.go')
-rw-r--r--redo/table.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/redo/table.go b/redo/table.go
index 8720c14..2b69d6a 100644
--- a/redo/table.go
+++ b/redo/table.go
@@ -44,6 +44,7 @@ type Table interface {
// Selected and Select get and set the currently selected item in the Table.
// Selected returns -1 if no item is selected.
// Pass -1 to Select to deselect all items.
+ // TODO bounds checking
Selected() int
Select(index int)
}