diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-02 23:37:50 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-02 23:37:50 -0500 |
| commit | 403f9cab356c96a0459e1f3c45151ef62c251576 (patch) | |
| tree | d96f276ff5f9ba77166caaf6042e86322ff548ec | |
| parent | 463b34791179a6a5063565c56bfa56d794e1f7e1 (diff) | |
Fixed a typo'd selector name related to Listbox selection. Adding items still doesn't work...
| -rw-r--r-- | listbox_darwin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/listbox_darwin.go b/listbox_darwin.go index 74176f5..5f7a2b7 100644 --- a/listbox_darwin.go +++ b/listbox_darwin.go @@ -183,7 +183,7 @@ var ( _setAllowsEmptySelection = sel_getUid("setAllowsEmptySelection:") _setHeaderView = sel_getUid("setHeaderView:") _selectedRowIndexes = sel_getUid("selectedRowIndexes") - _count = sel_getUid("_count") + _count = sel_getUid("count") ) func makeListbox(parentWindow C.id, alternate bool) C.id { |
