Re: [PyQt] Subclassing QNetworkReply

2009-03-02 Thread Detlev Offenbach
On Montag, 2. März 2009, Phil Thompson wrote: > On Mon, 2 Mar 2009 19:31:26 +0100, Detlev Offenbach > > wrote: > > On Montag, 2. März 2009, Phil Thompson wrote: > >> On Mon, 2 Mar 2009 18:33:01 +0100, Detlev Offenbach > >> > >> wrote: > >> > On Montag, 2. März 2009, Phil Thompson wrote: > >> >> O

Re: [PyQt] Subclassing QNetworkReply

2009-03-02 Thread Phil Thompson
On Mon, 2 Mar 2009 19:31:26 +0100, Detlev Offenbach wrote: > On Montag, 2. März 2009, Phil Thompson wrote: >> On Mon, 2 Mar 2009 18:33:01 +0100, Detlev Offenbach >> >> wrote: >> > On Montag, 2. März 2009, Phil Thompson wrote: >> >> On Mon, 2 Mar 2009 18:19:57 +0100, Detlev Offenbach >> >> >> >>

Re: [PyQt] Subclassing QNetworkReply

2009-03-02 Thread Detlev Offenbach
On Montag, 2. März 2009, Phil Thompson wrote: > On Mon, 2 Mar 2009 18:33:01 +0100, Detlev Offenbach > > wrote: > > On Montag, 2. März 2009, Phil Thompson wrote: > >> On Mon, 2 Mar 2009 18:19:57 +0100, Detlev Offenbach > >> > >> wrote: > >> > Hi, > >> > > >> > I am trying to write a subclass of QN

Re: [PyQt] Subclassing QNetworkReply

2009-03-02 Thread Phil Thompson
On Mon, 2 Mar 2009 18:33:01 +0100, Detlev Offenbach wrote: > On Montag, 2. März 2009, Phil Thompson wrote: >> On Mon, 2 Mar 2009 18:19:57 +0100, Detlev Offenbach >> >> wrote: >> > Hi, >> > >> > I am trying to write a subclass of QNetworkReply. This subclass needs >> > to >> > have >> > it's own v

Re: [PyQt] Subclassing QNetworkReply

2009-03-02 Thread Detlev Offenbach
On Montag, 2. März 2009, Phil Thompson wrote: > On Mon, 2 Mar 2009 18:19:57 +0100, Detlev Offenbach > > wrote: > > Hi, > > > > I am trying to write a subclass of QNetworkReply. This subclass needs to > > have > > it's own variant of the readData protected method. However, it seems, > > that > > >

Re: [PyQt] Subclassing QNetworkReply

2009-03-02 Thread Phil Thompson
On Mon, 2 Mar 2009 18:19:57 +0100, Detlev Offenbach wrote: > Hi, > > I am trying to write a subclass of QNetworkReply. This subclass needs to > have > it's own variant of the readData protected method. However, it seems, that > this method doesn't work correctly. How do I have to do this correc

[PyQt] Subclassing QNetworkReply

2009-03-02 Thread Detlev Offenbach
Hi, I am trying to write a subclass of QNetworkReply. This subclass needs to have it's own variant of the readData protected method. However, it seems, that this method doesn't work correctly. How do I have to do this correctly. My code is shown below. -- class HelpNetworkReply(QNe