> QtCore.QObject.connect( QtCore.SIGNAL("whateveritscalled()"),
> self.yourSlot)

Er, I get a lot of stacktraces over that line because I always forget the 
first argument to SIGNAL:

QtCore.QObject.connect( theobjectemittingthesignal, 
QtCore.SIGNAL("whateveritscalled()"), self.yourSlot)

So it's:  (The emitter, the signal, the slot).

Sorry.

Dave

_______________________________________________
PyKDE mailing list    PyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Reply via email to