forked from qt-creator/qt-creator
QmlDesigner: Fix spelling in watcher
Change-Id: I3252ee4b600489b01aaeb52e20a2388bfc62edfb Reviewed-by: Burak Hancerli <burak.hancerli@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
committed by
Thomas Hartmann
parent
aa1c0715c8
commit
28d58638e7
@@ -74,14 +74,14 @@ public:
|
||||
|
||||
addEntries(entires);
|
||||
|
||||
auto notContainsdId = [&, &ids = ids](WatcherEntry entry) {
|
||||
auto notContainsId = [&, &ids = ids](WatcherEntry entry) {
|
||||
return !std::binary_search(ids.begin(), ids.end(), entry.id)
|
||||
|| !std::binary_search(sourceContextIds.begin(),
|
||||
sourceContextIds.end(),
|
||||
entry.sourceContextId);
|
||||
};
|
||||
|
||||
removeUnusedEntries(entires, notContainsdId);
|
||||
removeUnusedEntries(entires, notContainsId);
|
||||
}
|
||||
|
||||
void removeIds(const ProjectPartIds &ids) override
|
||||
|
Reference in New Issue
Block a user