diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-09 16:02:17 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-09 16:02:17 -0400 |
| commit | b9f0ad90ec3568cbb1a7a2452d51395377c03a99 (patch) | |
| tree | 8887a96143833845ec479589e903e43c809961ba /sysdata.go | |
| parent | a7ec908ebd5e344628717cab874919dfc29cd58c (diff) | |
Steamrolled errors under panic() in Combobox/Listbox.Append()/InsertBefore() because screw Windows being different.
Diffstat (limited to 'sysdata.go')
| -rw-r--r-- | sysdata.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,10 +40,10 @@ func (c *cSysData) isChecked() bool { func (c *cSysData) text() string { panic(runtime.GOOS + " sysData does not define text()") } -func (c *cSysData) append(string) error { +func (c *cSysData) append(string) { panic(runtime.GOOS + " sysData does not define append()") } -func (c *cSysData) insertBefore(string, int) error { +func (c *cSysData) insertBefore(string, int) { panic(runtime.GOOS + " sysData does not define insertBefore()") } func (c *cSysData) selectedIndex() int { |
