[PyQt] patch for pyqt debug build error

2008-02-15 Thread K.S.Sreeram
Hi Phil, I've attached a patch to fix a simple error that occurs when trying to build PyQt (v4.3.3) with a debug-only build of Qt. [sreeram;] pyqt-qtdirs-debug.diff Description: Binary data ___ PyQt mailing listPyQt@riverbankcomputing.com

Re: [PyQt] patch for pyqt debug build error

2008-02-15 Thread K.S.Sreeram
On 15-Feb-08, at 2:43 PM, K.S.Sreeram wrote: I've attached a patch to fix a simple error that occurs when trying to build PyQt (v4.3.3) with a debug-only build of Qt. I also had to manually tweak the following makefiles, so that they would default to a debug build instead of a release

Re: [PyQt] [PyKDE4] Crash when using KConfig

2008-02-15 Thread Adeodato Simó
* Simon Edwards [Thu, 14 Feb 2008 22:59:49 +0100]: Adeodato Simó wrote: Hello, any news about this? This works. (see attachment). Oh. Well, it doesn't crash, but it's not quite the same, since that writes to the session config (~/.kde/share/config/session/test_... vs.

[PyQt] how to prevent QFileDialog.getSaveFileName from overwriting

2008-02-15 Thread Darren Dale
I am using QFileDialog.getSaveFileName: from PyQt4 import QtGui a = QtGui.QApplication([]) f = QtGui.QFileDialog.getSaveFileName(None, 'Open File', '.') print f If I select an existing file and select save, another dialog automatically pops up asking if I want to replace it. If I select no,

Re: [PyQt] how to prevent QFileDialog.getSaveFileName from overwriting

2008-02-15 Thread Giovanni Bajo
On 2/15/2008 3:59 PM, Darren Dale wrote: I am using QFileDialog.getSaveFileName: from PyQt4 import QtGui a = QtGui.QApplication([]) f = QtGui.QFileDialog.getSaveFileName(None, 'Open File', '.') print f If I select an existing file and select save, another dialog automatically pops up asking