avoid arrow function; fix wrapper type

This commit is contained in:
王劲鹏
2021-04-07 10:41:34 +08:00
committed by osborn
parent 42b7d0723d
commit 5229e04752
5 changed files with 28 additions and 24 deletions

View File

@@ -118,7 +118,7 @@ void DoricViewNode::blend(QQuickItem *view, QString name, QJsonValue prop) {
} else if (name == "onClick") {
if (prop.isString())
clickFunction = prop.toString();
} else {
} else if (name != "layoutConfig") {
qCritical() << name << ": " << prop.toString();
}
}