diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-09 21:40:14 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-09 21:40:14 -0400 |
| commit | 45e07797908a16102952e07ca75a3d3a262ecde1 (patch) | |
| tree | 006f1e66ed886ee2d765ae8711df9755a17acaef /sysdata.go | |
| parent | 3ff9c7d23378c8fbcdc1eebc97d8e9d0ee64c22c (diff) | |
Split sysData.show() into separate show() and firstShow() to accomodate Windows's differing rules for first-time window show; this will also allow me to remove the error returns from sysData.show() and sysData.hide() (later).
Diffstat (limited to 'sysdata.go')
| -rw-r--r-- | sysdata.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -22,6 +22,9 @@ type cSysData struct { func (c *cSysData) make(initText string, window *sysData) error { panic(runtime.GOOS + " sysData does not define make()") } +func (c *cSysData) firstShow() error { + panic(runtime.GOOS + " sysData does not define firstShow()") +} func (c *cSysData) show() error { panic(runtime.GOOS + " sysData does not define show()") } |
