On Sat, 24 Oct 2009 12:31:56 -0700 (PDT), Filippo Rebora <[email protected]> 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 _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
