Re: [PyQt] problem with QTableView.selectionChanged

2008-10-13 Thread Christoph Burgmer
Hi, Am Monday, 13. October 2008 schrieb Bastian Venthur: > how can I catch a selectionChanged signal from a tableView? I tried: > > QtCore.QObject.connect( self.tableView, > QtCore.SIGNAL('selectionChanged(const QItemSelection&, > const QItemSelection&)'), > s

[PyQt] problem with QTableView.selectionChanged

2008-10-13 Thread Bastian Venthur
Hi, how can I catch a selectionChanged signal from a tableView? I tried: QtCore.QObject.connect( self.tableView, QtCore.SIGNAL('selectionChanged(const QItemSelection&, const QItemSelection&)'), self.selection_changed) but selection_changed never gets called.