Hello,

I was trying to connect the dataChanged signal of a QTableView instance the "new style way" via its string name and __getattr__ like so:

treeview.__getattr__("dataChanged").connect(someSlot)

Instead of getting a bound signal (like I do with a ComboBox for example), I am getting a pyqtMethodProxy, which does not have a connect attribute. I can't find anything on the internet about this. Is there a way to get the actual signal?

Cheers

Sebastian
_______________________________________________
PyQt mailing list    PyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to