"qml-lisp": allow for nested lists, vectors etc. as return values from QML function calls; some revisions;

This commit is contained in:
polos 2017-01-20 20:57:32 +01:00
parent 4cb7bfcfbf
commit f290094824
10 changed files with 119 additions and 25 deletions

View file

@ -18,8 +18,6 @@ QVariant Lisp::apply(const QString& function, const QVariantList& arguments) {
eql_fun("qml:qml-apply", QVariant::String,
Q_ARG(QString, function),
Q_ARG(QVariantList, arguments));
if(ret.toString() == "NIL") {
ret = QVariant(); }
return ret; }
QT_END_NAMESPACE