QmlJSTools: Fix compile

Needed because of conflicting patches went in
nearly at the same time.

Change-Id: I042637438d1b4e412ae39bc2e8bc5e1aa24527dc
Reviewed-by: André Hartmann <aha_1980@gmx.de>
This commit is contained in:
Christian Stenger
2019-07-31 09:57:39 +02:00
parent f4f86078a5
commit 3163ed4feb

View File

@@ -66,8 +66,8 @@ QList<Core::LocatorFilterEntry> FunctionFilter::matchesFor(
if (!regexp.isValid()) if (!regexp.isValid())
return {}; return {};
const QHash<QString, QList<LocatorData::Entry> > entries = m_data->entries(); const QHash<QString, QList<LocatorData::Entry> > locatorEntries = m_data->entries();
for (const QList<LocatorData::Entry> &items : entries) { for (const QList<LocatorData::Entry> &items : locatorEntries) {
if (future.isCanceled()) if (future.isCanceled())
break; break;