summaryrefslogtreecommitdiff
path: root/sysdata.go
diff options
context:
space:
mode:
Diffstat (limited to 'sysdata.go')
-rw-r--r--sysdata.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdata.go b/sysdata.go
index c010ab6..5076093 100644
--- a/sysdata.go
+++ b/sysdata.go
@@ -76,6 +76,9 @@ func (c *cSysData) setProgress(int) {
func (c *cSysData) len() int {
panic(runtime.GOOS + " sysData does not define len()")
}
+func (c *cSysData) setAreaSize(int, int) {
+ panic(runtime.GOOS + " sysData does not define setAreaSize()")
+}
// signal sends the event signal. This raise is done asynchronously to avoid deadlocking the UI task.
// Thanks skelterjohn for this techinque: if we can't queue any more events, drop them