Hey, I'm porting some C++ code to PySide. Original C++: QMetaObject::invokeMethod(parent(), "itemClicked", Qt::DirectConnection, Q_ARG(QListWidgetItem*, item(index.row())));
Python:QMetaObject.invokeMethod(self.parent(), 'itemClicked', Qt.DirectConnection, SomethingSomething(QListWidgetItem, index.row()) That last argument is of the type QGenericReturnArgument. How can I get that macro in PySide? What should the line look like? Thanks
_______________________________________________ PySide mailing list [email protected] http://lists.openbossa.org/listinfo/pyside
