forked from qt-creator/qt-creator
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:
committed by
Thomas Hartmann
parent
3f5259dd00
commit
a3753deebe
@@ -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) { }
|
||||
|
||||
Reference in New Issue
Block a user