Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
QScriptconnect fail
-
Hi,
i'm trying to connect a signal with a script in this way:
@QScriptValue test_slot = engine->evaluate("function(text) { debug('message received ', text); }");
qScriptConnect(this, SIGNAL(MessageReceivedSignal(QString)), QScriptValue(), test_slot);
@but qScriptConnect always retrun false so it fails but i'm not understanding why...
Any suggestion?
Thanks