Utils: Rename FilePath::normalizePathName to normalizedPathName

Change-Id: Idf5faab1cf55d6f7cca493c8ad451825310f5d66
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
hjk
2021-08-23 12:53:47 +02:00
parent 303b554543
commit 53050255de
7 changed files with 9 additions and 9 deletions

View File

@@ -258,7 +258,7 @@ void UnstartedAppWatcherDialog::findProcess()
const QString &appName = m_pathChooser->filePath().normalizePathName().toString();
DeviceProcessItem fallback;
foreach (const DeviceProcessItem &p, DeviceProcessList::localProcesses()) {
if (Utils::FileUtils::normalizePathName(p.exe) == appName) {
if (Utils::FileUtils::normalizedPathName(p.exe) == appName) {
pidFound(p);
return;
}