RE: [PyQt] No reply - did I post wrong?

2008-03-21 Thread Peter Howard
> To save wasting your time - why don't I try and build the latest version of fluidsynth using this and see if that makes the problem go away? It did make the problem go away ! Thanks for the steering. ___ PyQt mailing listPyQt@riverbankcomputing.c

[PyQt] Re: [PyKDE] ElementTree in PyQt4 latest with py2exe not working

2008-03-21 Thread Olivier Fournier
Hi, I add this patch to uiparser.py with success for cx-freeze: --- /usr/lib/python2.5/site-packages/PyQt4/uic/uiparser.py +++ @@ -5,6 +5,7 @@ from itertools import count try: +import xml.etree.ElementTree from xml.etree.cElementTree import parse, SubElement except ImportError: try:

Re: [PyQt] PyKDE4-4.0.2-1 release available

2008-03-21 Thread Danny Pansters
On Wednesday 12 March 2008 17:27:44 Jim Bublitz wrote: > The PyKDE4-4.0.2-1 release is now available at riverbankcomputing.com. > > It should fix various install issues, including correct variable typing in > some handwritten KIO.MetaData code, correctly obtaining the Qt include path > from your Py

Re: [PyQt] Segfault with QString

2008-03-21 Thread Filip Gruszczyński
Copying would be much more intuitive in my opinion. Thanks for your help, now I know a bit more, about what happens inside. 2008/3/21, Phil Thompson <[EMAIL PROTECTED]>: > On Friday 21 March 2008, Filip Gruszczyński wrote: > > > > This is the same issue that came up the other day in the context of

Re: [PyQt] PyQt compile error

2008-03-21 Thread Phil Thompson
On Friday 21 March 2008, Chris Jones wrote: > Hello, > > I tried compiling PyQt today on my mac, and I got the following: > > === > Undefined symbols: > "QGLContext::deleteTexture(unsigned int)", referenced from: > _meth_QGLContext_deleteTexture in sipQtOpenGLQGL

[PyQt] PyQt compile error

2008-03-21 Thread Chris Jones
Hello, I tried compiling PyQt today on my mac, and I got the following: === Undefined symbols: "QGLContext::deleteTexture(unsigned int)", referenced from: _meth_QGLContext_deleteTexture in sipQtOpenGLQGLContext.o "QGLWidget::bindTexture(QImage const&, unsigned

Re: [PyQt] Segfault with QString

2008-03-21 Thread Phil Thompson
On Friday 21 March 2008, Filip Gruszczyński wrote: > > This is the same issue that came up the other day in the context of > > events. The QString that value is wrapping is a temporary, so you either > > need to convert it (as you do when calling str()) or copy it (by calling > > QString()). > > Co

Re: [PyQt] Segfault with QString

2008-03-21 Thread Filip Gruszczyński
> This is the same issue that came up the other day in the context of events. > The QString that value is wrapping is a temporary, so you either need to > convert it (as you do when calling str()) or copy it (by calling QString()). Could you explain it a bit further or send me to a proper docume

Re: [PyQt] Segfault with QString

2008-03-21 Thread Phil Thompson
On Friday 21 March 2008, Filip Gruszczyński wrote: > > It's practically impossible to help if you just post a code fragment. The > > problem is almost certain to be in the bits of code you haven't posted. > > > > Try and come up with a simple but complete script that demonstrates the > > problem

Re: [PyQt] os.popen output to a progress bar

2008-03-21 Thread Mark Summerfield
On 2008-03-20, Jeremiah Summers wrote: > Hello Guys sorry to bother you again. You've just been a great help in > the past. Here's my issue. I'm trying to run a df command parse the > percentage and then output that to a progress bar. Here's my current > code: > > def CHNGRefresh(self): > per