summaryrefslogtreecommitdiff
path: root/sysdata.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-02-12 10:43:57 -0500
committerPietro Gagliardi <[email protected]>2014-02-12 10:43:57 -0500
commit3f8fe0e7108c1cd87e177bed22e3307c9df03e63 (patch)
treee34a7dd419bf2649dc24f5dbf89e6d825179f55d /sysdata.go
parentf93bebfeec42aeee07f43fcf6466b93f073b6111 (diff)
Separated initial text from sysData and fixed errors in the previous commits.
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 {