Re: [PyQt] Custom C++ types as signal arguments

2013-10-01 Thread David Boddie
On 28 September 2013 15:31:41, I wrote: Thanks for the correction - it works! In fact, removing the StringList type altogether appears to work, which puts me back in the position I started in, but with working code. The typedef was originally put in as a workaround for the crash and because I

Re: [PyQt] Custom C++ types as signal arguments

2013-09-28 Thread Phil Thompson
On Tue, 24 Sep 2013 13:24:05 + (UTC), David Boddie dav...@met.no wrote: I'm running into problems with sip and custom signal arguments. I'm probably doing something wrong, and I'm hoping that someone might be able to put me on the right track. I've written a class with this definition:

Re: [PyQt] Custom C++ types as signal arguments

2013-09-28 Thread David Boddie
On 28 September 2013 14:29:03, Phil Thompson wrote: On Tue, 24 Sep 2013 13:24:05 + (UTC), David Boddie davidb at met.no wrote: My sip wrapper starts with a typedef for the StringList type and %MappedType implementations for std::string and StringList: Remove this typedef...