From 32e70f64143b840292b4f763ede9585d792aaccb Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 15 Feb 2014 13:02:10 -0500 Subject: Added sysData.setWindowSize(), which will simplify a few things in Window.Open() and Control.make(). --- sysdata.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sysdata.go') diff --git a/sysdata.go b/sysdata.go index f8177ac..929c015 100644 --- a/sysdata.go +++ b/sysdata.go @@ -48,6 +48,9 @@ func (c *cSysData) selectedIndices() ([]int, error) { func (c *cSysData) selectedTexts() ([]string, error) { panic(runtime.GOOS + " sysData does not define selectedIndex()") } +func (c *cSysData) setWindowSize(int, int) error { + panic(runtime.GOOS + " sysData does not define setWindowSize()") +} const ( c_window = iota -- cgit v1.2.3