summaryrefslogtreecommitdiff
path: root/sysdata.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-03-09 21:40:14 -0400
committerPietro Gagliardi <[email protected]>2014-03-09 21:40:14 -0400
commit45e07797908a16102952e07ca75a3d3a262ecde1 (patch)
tree006f1e66ed886ee2d765ae8711df9755a17acaef /sysdata.go
parent3ff9c7d23378c8fbcdc1eebc97d8e9d0ee64c22c (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.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdata.go b/sysdata.go
index 8ee6f3e..56313e3 100644
--- a/sysdata.go
+++ b/sysdata.go
@@ -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()")
}