From 3aa59d4ab9d1217fa47c4b1b265fd435547ed62f Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 8 Mar 2014 16:42:57 -0500 Subject: Added Combobox/Listbox.Len() and its GTK+ implementation. --- sysdata.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sysdata.go') diff --git a/sysdata.go b/sysdata.go index 4574684..eb62107 100644 --- a/sysdata.go +++ b/sysdata.go @@ -67,6 +67,9 @@ func (c *cSysData) preferredSize() (int, int) { func (c *cSysData) setProgress(int) { panic(runtime.GOOS + " sysData does not define setProgress()") } +func (c *cSysData) len() int { + panic(runtime.GOOS + " sysData does not define len()") +} // 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 -- cgit v1.2.3