diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-15 13:02:10 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-15 13:02:10 -0500 |
| commit | 32e70f64143b840292b4f763ede9585d792aaccb (patch) | |
| tree | d30086b55ab486da395d5f4093d78200b34c601f /sysdata.go | |
| parent | 0247935cbf9a6ebed3640d0879f4854b4e7fd8c1 (diff) | |
Added sysData.setWindowSize(), which will simplify a few things in Window.Open() and Control.make().
Diffstat (limited to 'sysdata.go')
| -rw-r--r-- | sysdata.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |
