Fix fail to build from sources

This commit is contained in:
joshua
2022-01-28 18:08:16 +01:00
parent a31bd6eb0d
commit d562ca8a39

View File

@@ -38,7 +38,7 @@ inline uint qHash(const QPointer<Element> &key, uint seed) {
if (key)
return qHash(key->uuid(), seed);
else
return qHash(nullptr, seed);
return qHash(QUuid(), seed);
}
class TerminalStrip;