Re: [PyKDE] Compile error in current snapshot (Qt-4.1.2)

2006-05-21 Thread Phil Thompson
On Sunday 21 May 2006 3:21 am, Patrick Stinson wrote: Didn't expect this one, but I'm trying with 4.1.3 [EMAIL PROTECTED] ~/Desktop/PyQt4-mac-gpl-snapshot-20060519 $ make c++ -c -pipe -fPIC -Os -Wall -W -DQT_NO_DEBUG -DQT_CORE_LIB -I.

[PyKDE] ANN: PyQwt-4.2.1 and PyQwt5-20060521

2006-05-21 Thread Gerard Vermeulen
I am proud to announce PyQwt-4.2.1 and PyQwt5-20060521 What is PyQwt? - it is a set of Python bindings for the Qwt C++ class library which extends the Qt framework with widgets for scientific and engineering applications. It provides a widget to plot 2-dimensional data and various

[PyKDE] Improved PyQt4 Documentation

2006-05-21 Thread Phil Thompson
I've had second thoughts about my approach to improving the PyQt4 documentation. You can see the current effort at http://www.riverbankcomputing.com/Docs/PyQt4/html/ This has been helped by Trolltech (nice people that they are) giving me permission to re-use relevant sections of the Qt docs

Re: [PyKDE] Improved PyQt4 Documentation

2006-05-21 Thread Detlev Offenbach
That looks very promising. I think, this is exactly the documentation needed by PyQt. However, I would add a link to the general PyQt page (the one which explains PyQt in general as well as the differences to Qt). Regards, Detlev PS: Will the documentation (eventually) contain sections for the

Re: [PyKDE] Improved PyQt4 Documentation

2006-05-21 Thread Phil Thompson
On Sunday 21 May 2006 6:28 pm, Detlev Offenbach wrote: That looks very promising. I think, this is exactly the documentation needed by PyQt. However, I would add a link to the general PyQt page (the one which explains PyQt in general as well as the differences to Qt). You mean the one you get

Re: [PyKDE] Improved PyQt4 Documentation

2006-05-21 Thread Detlev Offenbach
Am Sonntag, 21. Mai 2006 22:27 schrieb Phil Thompson: On Sunday 21 May 2006 6:28 pm, Detlev Offenbach wrote: That looks very promising. I think, this is exactly the documentation needed by PyQt. However, I would add a link to the general PyQt page (the one which explains PyQt in general as

[PyKDE] Eric 3.9 reopen last project

2006-05-21 Thread Andreas Pakulat
Hi, not sure wether this existed in earlier versions or maybe I'm just overlooking something: Is there a way with eric 3.9.0 to reopen the project that was opened when I closed eric3? Andreas -- Green light in A.M. for new projects. Red light in P.M. for traffic tickets.

[PyKDE] pysignals and Py_DECREF

2006-05-21 Thread Patrick Stinson
I am trying to disconnect all of the signals that I connected to a QObject in order to ensure that it is deleted. The following program prints Object::disconnect: No such signal QObject::bleh(QObject*) if I uncomment the disconnect line, but also deletes the object when it is dereferenced. from