[PyKDE] PyQt / sipdistutils

2005-11-30 Thread Jasper R. Plaisier
Hello all, I am trying to package an extension module that works with qt objects. I therefore wrapped the code using sip and everything seems to work fine when i build in the documented using a .sip file and configuration.py. Now I am trying to package everything for distribution using

Re: [PyKDE] PyQt / sipdistutils

2005-11-30 Thread Giovanni Bajo
Jasper R. Plaisier [EMAIL PROTECTED] wrote: I have now worked around the problem in a quick and dirty way by copying sipdistutils.py to pyqtdistutils.py and changing the code in _sip_compile to the following def _sip_compile(self, sip_bin, source, sbf) : import pyqtconfig

Re: [PyKDE] PyQt / sipdistutils

2005-11-30 Thread Giovanni Bajo
[EMAIL PROTECTED] wrote: I have now worked around the problem in a quick and dirty way by copying You could also derive a new class and re-implement just the _sip_compile method. I realize that, but I was more looking for a generic solution that was already implemented and that i maybe

[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).

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 instance