summaryrefslogtreecommitdiff
path: root/sysdata.go
diff options
context:
space:
mode:
Diffstat (limited to 'sysdata.go')
-rw-r--r--sysdata.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdata.go b/sysdata.go
index 854e1a0..b17f506 100644
--- a/sysdata.go
+++ b/sysdata.go
@@ -8,12 +8,11 @@ import (
// The sysData type contains all system data. It provides the system-specific underlying implementation. It is guaranteed to have the following by embedding:
type cSysData struct {
ctype int
- text string
// for Window
closing chan struct{}
}
-func (c *cSysData) make() error {
+func (c *cSysData) make(initText string) error {
panic(runtime.GOOS + " sysData does not define make()")
}
func (c *cSysData) show() error {