Re: [PyKDE] DCOPExObj bug?

2005-12-01 Thread Danny Pansters
On Thursday 1 December 2005 00:57, Jim Bublitz wrote: > On Wednesday 30 November 2005 15:41, Danny Pansters wrote: > > Using kdcop and the dcop CLI, it seems that although the methods are > > executed alright, kdcop complains: "DCOP call failed. Application is > > still registered with DCOP; I d

Re: [PyKDE] DCOPExObj bug?

2005-11-30 Thread Jim Bublitz
On Wednesday 30 November 2005 15:41, Danny Pansters wrote: > Hi, > > I'm working on a PyKDE app and have been adding a dcop interface like such: > > def __init__(self, obj, id): > DCOPExObj.__init__(self, id) > self.addMethod("void quit()", obj.slotQuit) > > where obj is the mainwindow

[PyKDE] DCOPExObj bug?

2005-11-30 Thread Danny Pansters
Hi, I'm working on a PyKDE app and have been adding a dcop interface like such: def __init__(self, obj, id): DCOPExObj.__init__(self, id) self.addMethod("void quit()", obj.slotQuit) where obj is the mainwindow instance that has all the relevant methods (most equal actions). Usi