summaryrefslogtreecommitdiff
path: root/sysdata_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-12 22:05:34 -0400
committerPietro Gagliardi <[email protected]>2014-04-12 22:05:34 -0400
commitd4c79539af8b33f41c070773c6bc5e5cbf867543 (patch)
tree43a7eb1de1892a58774752bc56cd10b63050b405 /sysdata_unix.go
parent274fa0c2928e3d1573a83d2f68048963df5e16e4 (diff)
Fixed Listboxes on Mac OS X having an initial selection.
Diffstat (limited to 'sysdata_unix.go')
-rw-r--r--sysdata_unix.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdata_unix.go b/sysdata_unix.go
index 93b3704..c9be614 100644
--- a/sysdata_unix.go
+++ b/sysdata_unix.go
@@ -363,3 +363,7 @@ func (s *sysData) setAreaSize(width int, height int) {
func (s *sysData) selectIndex(index int) {
// TODO not yet implemented on Unix (added for Mac only right now)
}
+
+func (s *sysData) selectIndices(indices []int) {
+ // TODO not yet implemented on Windows (added for Mac only right now)
+}