[PyKDE] Small database application - best way?
Matt Newell
newellm at blur.com
Tue Nov 28 17:42:50 GMT 2006
On Tuesday 28 November 2006 03:10, Sibylle Koczian wrote:
> And, more important: in the setData method the dataChanged signal is
> emitted:
>
> def setData(self, index, value, role):
> ...
> self.emit(QtCore.SIGNAL('dataChanged'), index, index)
> return True
should be
self.emit(QtCore.SIGNAL('dataChanged(const QModelIndex &,const QModelIndex
&)'), index, index )
Matt
More information about the PyQt
mailing list