TextEditor: more FileName -> FilePath renaming

Change-Id: Ia61868806db47561e7bf7ae9b3cfb1e62a085a7a
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
David Schulz
2019-10-01 09:11:02 +02:00
parent d3b4f06ada
commit 9afc5305d6
6 changed files with 14 additions and 14 deletions

View File

@@ -316,7 +316,7 @@ Client *LanguageClientManager::clientForDocument(TextEditor::TextDocument *docum
Client *LanguageClientManager::clientForFilePath(const Utils::FilePath &filePath)
{
return clientForDocument(TextEditor::TextDocument::textDocumentForFileName(filePath));
return clientForDocument(TextEditor::TextDocument::textDocumentForFilePath(filePath));
}
Client *LanguageClientManager::clientForUri(const DocumentUri &uri)