| 80 | } |
| 81 | |
| 82 | static QString qmlErrorToString(const QQmlError &error) |
| 83 | { |
| 84 | return QStringLiteral("%1:%2:%3: %4") |
| 85 | .arg(error.url().toString()) |
| 86 | .arg(error.line()) |
| 87 | .arg(error.column()) |
| 88 | .arg(error.description()); |
| 89 | } |
| 90 | |
| 91 | static QString qmlListPropertyToString(const QVariant &value, bool *ok) |
| 92 | { |
nothing calls this directly
no test coverage detected