diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-12 10:43:57 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-12 10:43:57 -0500 |
| commit | 3f8fe0e7108c1cd87e177bed22e3307c9df03e63 (patch) | |
| tree | e34a7dd419bf2649dc24f5dbf89e6d825179f55d /sysdata.go | |
| parent | f93bebfeec42aeee07f43fcf6466b93f073b6111 (diff) | |
Separated initial text from sysData and fixed errors in the previous commits.
Diffstat (limited to 'sysdata.go')
| -rw-r--r-- | sysdata.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 { |
