From 58f91072a5eaa1ddfef321b8ec8f2b34ef2cb5ce Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Wed, 7 Dec 2022 13:48:51 +0100 Subject: [PATCH] Remove redundant openUrl variable Signed-off-by: Claudio Cambra --- src/gui/editlocallyjob.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gui/editlocallyjob.cpp b/src/gui/editlocallyjob.cpp index de01a2cc2a9b9..1027243e38214 100644 --- a/src/gui/editlocallyjob.cpp +++ b/src/gui/editlocallyjob.cpp @@ -546,8 +546,7 @@ void EditLocallyJob::openFile() // from a separate thread, or, there will be a freeze. To avoid searching for a specific folder and checking // if the VFS is enabled - we just always call it from a separate thread. QtConcurrent::run([localFilePathUrl, this]() { - const auto fileOpened = QDesktopServices::openUrl(localFilePathUrl); - if (!fileOpened) { + if (QDesktopServices::openUrl(localFilePathUrl)) { showError(tr("Could not open %1").arg(_fileName), tr("Please try again.")); }