Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2021-05-12 13:45:33 +0300
committerGitHub <noreply@github.com>2021-05-12 13:45:33 +0300
commita3b2dc669c2b6bc84eaeaefd3436ff3f783f9f45 (patch)
tree2c869762843c5b57066ddc069ca8cfd04b9897f6 /src/gui/folderstatusmodel.cpp
parentdadddd7ea23bc598598f0a3f4a24594e0874ebc8 (diff)
One more apostrophe change
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'src/gui/folderstatusmodel.cpp')
-rw-r--r--src/gui/folderstatusmodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/folderstatusmodel.cpp b/src/gui/folderstatusmodel.cpp
index 73243d074..dc4cf2e37 100644
--- a/src/gui/folderstatusmodel.cpp
+++ b/src/gui/folderstatusmodel.cpp
@@ -1016,10 +1016,10 @@ void FolderStatusModel::slotSetProgress(const ProgressInfo &progress)
auto fileName = QFileInfo(citm._item._file).fileName();
if (allFilenames.length() > 0) {
//: Build a list of file names
- allFilenames.append(QStringLiteral(", '%1'").arg(fileName));
+ allFilenames.append(QStringLiteral(", \"%1\"").arg(fileName));
} else {
//: Argument is a file name
- allFilenames.append(QStringLiteral("'%1'").arg(fileName));
+ allFilenames.append(QStringLiteral("\"%1\"").arg(fileName));
}
}
if (curItemProgress == -1) {