I wrote: > I am having trouble connecting signals in a PySide wrapped QObject > derived object to Python code with a segmentation fault occurring in > the connect call.
The problem was that I was not using the --enable-pyside-extensions flag to generatorrunner. It was also possible to make the code run by changing the metaObject method on the wrapper to return the metaObject of the immediate superclass (the class being wrapped) instead of for QObject. Neil _______________________________________________ PySide mailing list [email protected] http://lists.pyside.org/listinfo/pyside
