Fix build error

QList::paths is changed to std::set

Change-Id: Ib996723ab316f956367ed801d0b897a481fbfb4a
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Vikas Pachdha
2022-11-23 19:19:00 +01:00
committed by Thomas Hartmann
parent 3f5259dd00
commit a3753deebe

View File

@@ -525,7 +525,7 @@ Export::Export(ImportKey exportName,
bool Export::visibleInVContext(const ViewerContext &vContext) const
{
return pathRequired.isEmpty() || vContext.paths.contains(pathRequired);
return pathRequired.isEmpty() || vContext.paths.count(pathRequired);
}
CoreImport::CoreImport() : language(Dialect::Qml) { }