Re: [PyQt] Problems with new-style signal/slot syntax

2013-04-10 Thread Baz Walter
On 09/04/13 22:19, Phil Thompson wrote: On Tue, 09 Apr 2013 21:06:44 +0100, Baz Walter wrote: After a bit of trial and error, it seems that signatures with "plain" or "const" arguments work okay, but the ones with "pointer" arguments don't. That is, unless the full C++ signature is used, in

Re: [PyQt] Problems with new-style signal/slot syntax

2013-04-09 Thread Phil Thompson
On Tue, 09 Apr 2013 21:06:44 +0100, Baz Walter wrote: > When doing new-style connections, I normally use a Python type object as > the selector (if necessary), and only very occasionally use a string. > However, I was surprised to discover that this does not always work as > expected. For examp

[PyQt] Problems with new-style signal/slot syntax

2013-04-09 Thread Baz Walter
When doing new-style connections, I normally use a Python type object as the selector (if necessary), and only very occasionally use a string. However, I was surprised to discover that this does not always work as expected. For example: from PyQt4 import QtGui, QtCore app = QtGui.QAppl