Christopher J. Bottaro wrote:

> I get a runtime exception when I try to execute the following code:
> 
> ---
> 
> def _initConnections(self):
>    QObject.connect(self.list_view,
>                    SIGNAL("contextMenuRequested(QListViewItem*, QPoint&,
> int)"),
>                    self.slotContextMenuRequested)
> 
> def slotContextMenuRequested(self, item, pos, col):
>         print "slotContextMenuRequested()"
> 
> ---

Oops, got the signature wrong.  Suppose to be
contextMenuRequested(QListViewItem*, const QPoint&, int)

Sorry for the noise.

_______________________________________________
PyKDE mailing list    [email protected]
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Reply via email to