here is my senario
I have a struct
struct SourceDoneParams_t
{
int eventType;
char* url;
};
Q_DECLARE_METATYPE(mmafwrapper::SourceDoneParams_t );
connected signal/slot something like this
connect(this, SIGNAL(applySourceDone(const mmafwrapper::SourceDoneParams_t)), this,
SLOT(onApplySourceDone(const mmafwrapper::SourceDoneParams_t)));
And I am getting error whenever signal is emmited
QObject::connect Cannot Queue arguments of type 'mmafwrapper::SourceDoneParams_t'
Bookmarks