Re: [PyKDE] BUG - disconnect

2002-11-06 Thread Kaleb Pederson
On Wednesday 06 November 2002 04:00 pm, Phil Thompson wrote: > > > > > > Thanks. Although it isn't usually necessary, it will be nice to have. > > There is a bug in PyQt with respect to connections being removed when the > > associated object has been deleted. But I'll try to post some example >

Re: [PyKDE] BUG - disconnect

2002-11-06 Thread Phil Thompson
On Monday 04 November 2002 1:59 pm, Kaleb Pederson wrote: > On Sunday 03 November 2002 12:13 pm, Phil Thompson wrote: > > On Tuesday 29 October 2002 12:46 am, Kaleb Pederson wrote: > > > Disconnect doesn't seem to work as expected. > > > > > > > > > > > > which are all very similar to the document

Re: [PyKDE] BUG - disconnect

2002-11-04 Thread Kaleb Pederson
On Monday 04 November 2002 05:59 am, Kaleb Pederson wrote: > Thanks. Although it isn't usually necessary, it will be nice to have. > There is a bug in PyQt with respect to connections being removed when the > associated object has been deleted. But I'll try to post some example code > within the

Re: [PyKDE] BUG - disconnect

2002-11-04 Thread Kaleb Pederson
> Thanks. Although it isn't usually necessary, it will be nice to have. > There is a bug in PyQt with respect to connections being removed when the > associated object has been deleted. But I'll try to post some example code > within the week. > > Basically, if I create a parentless object and co

Re: [PyKDE] BUG - disconnect

2002-11-04 Thread Kaleb Pederson
On Sunday 03 November 2002 12:13 pm, Phil Thompson wrote: > On Tuesday 29 October 2002 12:46 am, Kaleb Pederson wrote: > > Disconnect doesn't seem to work as expected. > > > > > > > > which are all very similar to the documentation examples. SIP can't seem > > to tell which method really should b

Re: [PyKDE] BUG - disconnect

2002-11-03 Thread Phil Thompson
On Tuesday 29 October 2002 12:46 am, Kaleb Pederson wrote: > Disconnect doesn't seem to work as expected. > > Per the Qt documentation (qobject.html#disconnect) I should be able to > disconnect signals as follows. > > I've tried various methods: > > def sigDiscon(self): > self.disconnec

[PyKDE] BUG - disconnect

2002-10-28 Thread Kaleb Pederson
Disconnect doesn't seem to work as expected. Per the Qt documentation (qobject.html#disconnect) I should be able to disconnect signals as follows. I've tried various methods: def sigDiscon(self): self.disconnect() # Test 1 #QObject.disconnect(self,0,0,0) # Test 2 - or None,N