From 403f9cab356c96a0459e1f3c45151ef62c251576 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 2 Mar 2014 23:37:50 -0500 Subject: [PATCH] Fixed a typo'd selector name related to Listbox selection. Adding items still doesn't work... --- listbox_darwin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {