[PyQt] Table changed/modified method

Phil Thompson phil at riverbankcomputing.com
Sat Oct 24 23:28:52 BST 2009


On Sat, 24 Oct 2009 12:31:56 -0700 (PDT), Filippo Rebora
<filirebo at gmail.com> wrote:
> Ehm...well
> 
> QtCore.QObject.connect(self.tableWidget, QtCore.SIGNAL("cellChanged()"),
> self.tableWasModified)
> 
> And here we have the connection statement: tableWidget contains the table
> (extended from QTableWidget) and tableWasModified is the method but....
> 
> tableWasModified is NEVER executed!
> 
> Is the signal wrong? or there's something else?

There is NO signal cellChanged(). There IS a signal cellChanged(int, int).

Phil


More information about the PyQt mailing list