mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
SyncFileStatusTracker: Fix compilation with older Qt
This commit is contained in:
parent
c35e74d264
commit
c150350096
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ void SyncFileStatusTracker::invalidateParentPaths(const QString& path)
|
|||
{
|
||||
QStringList splitPath = path.split('/', QString::SkipEmptyParts);
|
||||
for (int i = 0; i < splitPath.size(); ++i) {
|
||||
QString parentPath = splitPath.mid(0, i).join('/');
|
||||
QString parentPath = QStringList(splitPath.mid(0, i)).join(QLatin1String("/"));
|
||||
emit fileStatusChanged(_syncEngine->localPath() + parentPath, fileStatus(parentPath));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue