Re: [PyKDE] Unexplained delay calling Python method- partial

2007-03-01 Thread Tony Cappellini
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,

Re: [PyKDE] Unexplained delay calling Python method- partial explanation

2007-03-01 Thread Hans-Peter Jansen
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

[PyKDE] Unexplained delay calling Python method- partial explanation

2007-02-28 Thread 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 unexplained delay, it's the call to QFileDialog()/. Why does this call t

[PyKDE] Unexplained delay calling Python method- correction/repost

2007-02-28 Thread Tony Cappellini
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

[PyKDE] Unexplained delay calling Python method

2007-02-28 Thread Tony Cappellini
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