[Pyobjc-dev] sigbus with TableView delegates
Brought to you by:
ronaldoussoren
From: <bo...@pa...> - 2003-02-27 19:26:27
|
both of these methods are generating a sigbus. the first one fails instantly, the second one prints out "tableview will display cell" 3 times (in a 4x3 TableModel) and fails. any ideas? --bob # # TableView delegate methods # def tableView_shouldSelectRow_(self, aTableView, rowIndex): print "tableview select row" return 1 def tableView_willDisplayCell_forTableColumn_row_(self, aTableView, aCell, aColumn, rowIndex): print "tableview will display cell" |