diff options
| author | Pietro Gagliardi <[email protected]> | 2014-05-16 20:44:19 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-05-16 20:44:19 -0400 |
| commit | d8a7d9b53e154c181203f429cb182f3186c5bc98 (patch) | |
| tree | e4bdf9af27f68a2ab40a7d7e83019a7405bfa15a /sysdata_darwin.go | |
| parent | 6d67bce9b18ab01d99f636068ab5652857749c32 (diff) | |
Fixed up a bunch of Mac OS X function names, mostly Listbox-related, to be more clear and more consistent.
Diffstat (limited to 'sysdata_darwin.go')
| -rw-r--r-- | sysdata_darwin.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sysdata_darwin.go b/sysdata_darwin.go index b240e70..8da134a 100644 --- a/sysdata_darwin.go +++ b/sysdata_darwin.go @@ -177,13 +177,13 @@ var classTypes = [nctypes]*classData{ make: makeListbox, show: controlShow, hide: controlHide, - append: appendListbox, - insertBefore: insertListboxBefore, - selIndices: selectedListboxIndices, - selTexts: selectedListboxTexts, - delete: deleteListbox, + append: listboxAppend, + insertBefore: listboxInsertBefore, + selIndices: listboxSelectedIndices, + selTexts: listboxSelectedTexts, + delete: listboxDelete, len: listboxLen, - selectIndices: selectListboxIndices, + selectIndices: listboxSelectIndices, }, c_progressbar: &classData{ make: func(parentWindow C.id, alternate bool, s *sysData) C.id { |
