| 261 | } |
| 262 | |
| 263 | static QString propertyString(const QJSValue &obj, const QString &propertyName) |
| 264 | { |
| 265 | const auto val = obj.property(propertyName); |
| 266 | return val.isUndefined() || val.isNull() ? QString() : val.toString(); |
| 267 | } |
| 268 | |
| 269 | QtGui::SongDescription UtilityObject::makeSongDescription(const QJSValue &obj) |
| 270 | { |
no test coverage detected