I’m trying to emit a signal and send two parameters, one is a list of Song objects, and the second is a QtGui.QTableView object.
I tried doing that:
self.emit(QtCore.SIGNAL("searchOutput(list, QtGui.QTableView)"), songsObjs, self.table)
But I get the following error:
TypeError: C++ type 'list' is not supported as a slot argument type
What can I do?
If you have a look at the reference then it says
and
So try instead to do this: