Commit b8d1800a authored by jan.koester's avatar jan.koester
Browse files

test

parent 4e47574a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -487,9 +487,9 @@ QString LocalApi::collectRepeaterParams(QObject *repeater) {
    QJsonObject params;
    int count = repeater->property("count").toInt();
    for (int i = 0; i < count; ++i) {
        QObject *delegate = nullptr;
        QQuickItem *delegate = nullptr;
        QMetaObject::invokeMethod(repeater, "itemAt",
                                  Q_RETURN_ARG(QObject*, delegate),
                                  Q_RETURN_ARG(QQuickItem*, delegate),
                                  Q_ARG(int, i));
        if (!delegate) continue;
        QString key = delegate->property("fieldKey").toString();