Message: 3
Date: Thu, 1 Mar 2007 16:04:24 +0100
From: Hans-Peter Jansen <[EMAIL PROTECTED]>
Subject: Re: [PyKDE] Unexplained delay calling Python method- partial
explanation
This sounds, like you have some invalid/misbehaving devices installed, e.g.
floppy A: activated in BIOS,
Am Donnerstag, 1. März 2007 08:13 schrieb Tony Cappellini:
> When I set the breakpoint in the debugger, I had inadvertently set it
> on this line
> FileDialog = QFileDialog()
>
> I really wanted to set the breakpoint on
> the getOpenFileNames() call.
>
> However, I've FOUND the source of the
When I set the breakpoint in the debugger, I had inadvertently set it
on this line
FileDialog = QFileDialog()
I really wanted to set the breakpoint on
the getOpenFileNames() call.
However, I've FOUND the source of the unexplained delay,
it's the call to QFileDialog()/.
Why does this call t
Sorry- I pasted the wrong code in the previous mail
I'm using Pyqt 4.2.2 on Win XP, SP2.
I've got a menu action which is connected to a method I've written.
Here is the connect line
QDialog.connect(self.ui.actionOpen, SIGNAL("triggered()"),self.fileOpen)
here is the method it calls
de
I'm using Pyqt 4.2.2 on Win XP, SP2.
I've got a button which is connected to a method I've written.
Here is the connect line
QDialog.connect(self.ui.actionOpen, SIGNAL("triggered()"),
self.fileOpen)
here is the method it calls
def fileOpen(self):
'''
Displays the file o