From a3b2dc669c2b6bc84eaeaefd3436ff3f783f9f45 Mon Sep 17 00:00:00 2001 From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Wed, 12 May 2021 12:45:33 +0200 Subject: [PATCH] One more apostrophe change Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> --- src/gui/folderstatusmodel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/folderstatusmodel.cpp b/src/gui/folderstatusmodel.cpp index 73243d074b..dc4cf2e371 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) {