Fix qVariantFromValue deprecation (#94)

This commit is contained in:
Miklós Márton 2020-06-13 09:22:42 +02:00 committed by GitHub
parent 8ceea29d3e
commit 0d638a6fae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
3rdparty/serializer vendored

@ -1 +1 @@
Subproject commit e0bdec4a7c93b4d4307fd89200000ff817a86c99
Subproject commit b0194da3e12370049e63c4682039ffd832aa7d2e

View File

@ -187,7 +187,7 @@ inline bool nutClassInfo(const QMetaClassInfo &classInfo,
type = parts[0];
name = parts[1];
value = qVariantFromValue(parts[2]);
value = QVariant::fromValue(parts[2]);
return true;
}