mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:07:20 +08:00
Fix wrong argument passed to fixWindowsUncPaths
This commit is contained in:
committed by
Klaus Basan
parent
5096df034b
commit
625f8d1d6b
@@ -234,9 +234,9 @@ namespace BlackGui
|
||||
{
|
||||
if (existingDirs.isEmpty() || removeDirectories.isEmpty()) { return existingDirs; }
|
||||
const QStringList rDirs = CFileUtils::fixWindowsUncPaths(removeDirectories);
|
||||
const QStringList eDirs = CFileUtils::fixWindowsUncPaths(eDirs);
|
||||
const QStringList eDirs = CFileUtils::fixWindowsUncPaths(existingDirs);
|
||||
QStringList dirs;
|
||||
for (const QString &dir : existingDirs)
|
||||
for (const QString &dir : eDirs)
|
||||
{
|
||||
if (rDirs.contains(dir, m_fileCaseSensitivity)) { continue; }
|
||||
dirs.push_back(dir);
|
||||
|
||||
Reference in New Issue
Block a user