On Sunday 05 January 2003 1:17 pm, Jan Fritz wrote:
> Hi,
>
> a month ago i read in the mailing list from problemes
> with the SuSE8.1 system, i got the update and tried
> all the things said in list, the examples in the
> PyQT package are ok, but with my own program i
> got a segmentation fault.
>
> I cut it down to the multiple inheritance in one
> QDialog. Later i changed the "Names" class to
> a instance in QDialog and all worked well.
>
> What's wrong with the multiple inheritance program
> down in the message?

My guess would be that your Names class is a new-style class, which means that 
EditNames will be as well. PyQt has no knowledge of new-style classes.

Try making Names an old-style class by removing "object".

Phil

_______________________________________________
PyKDE mailing list    [EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde

Reply via email to