Fixed a typo'd selector name related to Listbox selection. Adding items still doesn't work...

This commit is contained in:
Pietro Gagliardi 2014-03-02 23:37:50 -05:00
parent 463b347911
commit 403f9cab35
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ var (
_setAllowsEmptySelection = sel_getUid("setAllowsEmptySelection:") _setAllowsEmptySelection = sel_getUid("setAllowsEmptySelection:")
_setHeaderView = sel_getUid("setHeaderView:") _setHeaderView = sel_getUid("setHeaderView:")
_selectedRowIndexes = sel_getUid("selectedRowIndexes") _selectedRowIndexes = sel_getUid("selectedRowIndexes")
_count = sel_getUid("_count") _count = sel_getUid("count")
) )
func makeListbox(parentWindow C.id, alternate bool) C.id { func makeListbox(parentWindow C.id, alternate bool) C.id {