diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-12 18:14:37 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-12 18:14:37 -0500 |
| commit | a9ff38894408e0a34da4742fc2b1aea0bb5ef60b (patch) | |
| tree | 2c4e58eb079cdd59537216943fc97fdd4fbd7a2d /sysdata.go | |
| parent | 0a9f40812950ad00239e93141a37183666d5f3eb (diff) | |
Added Window.SetTitle(). Also oops, forgot to mark the window as created.
Diffstat (limited to 'sysdata.go')
| -rw-r--r-- | sysdata.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -25,6 +25,9 @@ func (c *cSysData) show() error { func (c *cSysData) hide() error { panic(runtime.GOOS + " sysData does not define hide()") } +func (c *cSysData) setText(text string) error { + panic(runtime.GOOS + " sysData does not define setText()") +} const ( c_window = iota |
