diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-08 16:42:57 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-08 16:42:57 -0500 |
| commit | 3aa59d4ab9d1217fa47c4b1b265fd435547ed62f (patch) | |
| tree | bdffbdb57872231213018a6e1df732bcc0687067 /sysdata.go | |
| parent | d9b0bd3c700f7c559757834f7463410cfafd6c1e (diff) | |
Added Combobox/Listbox.Len() and its GTK+ implementation.
Diffstat (limited to 'sysdata.go')
| -rw-r--r-- | sysdata.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |
