How does one connect to the signals of a QItemModel?

I tried the following, but it didn't work:

self.connect(
                        self.model,
                        QtCore.SIGNAL('itemChanged(QStandardItem 8)'),
                        self.on_model_itemChanged
                )

and

self.connect(
                        self.model,
                        QtCore.SIGNAL('itemChanged(QStandardItem &)'),
                        self.on_model_itemChanged
                )

Neither worked.

-- 
Fedora 9 : sulphur is good for the skin
( www.pembo13.com )
_______________________________________________
PyQt mailing list    PyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to