LanguageClient: more FileName to FilePath renaming

Change-Id: I803211d462b442b6881a02e870d2cd816675e0d9
Reviewed-by: David Schulz <david.schulz@qt.io>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2019-09-11 14:34:20 +02:00
parent 7f29fa2030
commit f0ad5813b9
13 changed files with 41 additions and 41 deletions

View File

@@ -43,7 +43,7 @@ DocumentSymbolCache::DocumentSymbolCache(Client *client)
this,
[this](Core::IDocument *document) {
connect(document, &Core::IDocument::contentsChanged, this, [this, document]() {
m_cache.remove(DocumentUri::fromFileName(document->filePath()));
m_cache.remove(DocumentUri::fromFilePath(document->filePath()));
});
});
}