Re: [PyKDE] SIP: wrapper code calls virtual functions with base class prefix

2003-07-09 Thread Phil Thompson
On Tuesday 08 July 2003 12:49 pm, Tore Knabe wrote: Hi, I want to wrap a base class, which serves as an interface, and inherit from this base class in C++. The C++ class, which is not wrapped, overrides the virtual function foo() from the base class. My problem: when I call a factory method

[PyKDE] Losing Timers

2003-07-09 Thread Miller, Douglas
A problem of losing Timer Events on the Qt interest email archive was solved this way. Set 'qt_win_use_simple_timers' in qapplication_win.cpp to true. The following snippet of code solved it: Q_EXPORT extern bool qt_win_use_simple_timers; void someInitFunction() { ...

[PyKDE] More 3.7 compile issues

2003-07-09 Thread Rob Knapp
I'm currently compiling on a win32 platform and the build process reported that sipBadLengthForSlice was an unknown identifier. The line number provided was line 130 in spi/qstringlist.sip. For the time being I've hacked the .sip file to simply return NULL in those circumstances since my

Re: [PyKDE] More 3.7 compile issues

2003-07-09 Thread Phil Thompson
On Wednesday 09 July 2003 4:29 pm, Rob Knapp wrote: I'm currently compiling on a win32 platform and the build process reported that sipBadLengthForSlice was an unknown identifier. The line number provided was line 130 in spi/qstringlist.sip. Make sure you are using SIP v3.7. For the time

Re: [PyKDE] Losing Timers

2003-07-09 Thread Phil Thompson
On Wednesday 09 July 2003 3:06 pm, Miller, Douglas wrote: A problem of losing Timer Events on the Qt interest email archive was solved this way. Set 'qt_win_use_simple_timers' in qapplication_win.cpp to true. The following snippet of code solved it: Q_EXPORT extern bool

Fwd: Re: [PyKDE] Losing Timers

2003-07-09 Thread Phil Thompson
I meant to say, put the following in (for example) qglobal.sip. Phil---BeginMessage--- On Wednesday 09 July 2003 3:06 pm, Miller, Douglas wrote: A problem of losing Timer Events on the Qt interest email archive was solved this way. Set 'qt_win_use_simple_timers' in qapplication_win.cpp to

Re: Re[2]: [PyKDE] Problems compiling PyQt 3.7

2003-07-09 Thread Jonathan Gardner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wednesday 09 July 2003 06:00, mazu wrote: Witaj Hans-Peter, W Twoim liœcie datowanym 8 lipca 2003 (21:56:03) mo¿na przeczytaæ: HPJ Your env. is missing the qt3-devel package. HPJ Pete I get errors about QAssistantClient while compiling

Re: [PyKDE] More 3.7 compile issues

2003-07-09 Thread Rob Knapp
These issues have been resolved. I'm just noting them here in case anyone else has the same problem. Not sure how they would since it was my own idiocy...but I can't be the only one this unobservant, can I? The whole problem was that I wasn't watching the make processes for errors.

Re: [PyKDE] More 3.7 compile issues

2003-07-09 Thread Steve Simmons
On Wed, Jul 09, 2003 at 02:14:33PM -0700, Jonathan Gardner wrote: On Wednesday 09 July 2003 13:32, Steve Simmons wrote: On Wed, Jul 09, 2003 at 03:49:46PM -0400, Rob Knapp wrote: I would normally do 'python build.py' and 'make' as an ordinary user, then 'make install' as root.