From 0cf79df76afd055073c6eccbb6527247d4f70fa2 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Tue, 31 Oct 2023 16:15:58 +0100 Subject: [PATCH] Remove obsolete Konqueror workaround This isn't needed any more with recent Konqueror --- src/dolphinpart.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index a3856de6a6..d998852d5e 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -339,11 +339,7 @@ void DolphinPart::slotItemActivated(const KFileItem &item) args.setMimeType(item.mimetype()); } - // Ideally, konqueror should be changed to not require trustedSource for directory views, - // since the idea was not to need BrowserArguments for non-browser stuff... - KParts::BrowserArguments browserArgs; - browserArgs.trustedSource = true; - Q_EMIT m_extension->openUrlRequest(item.targetUrl(), args, browserArgs); + Q_EMIT m_extension->openUrlRequest(item.targetUrl(), args); } void DolphinPart::slotItemsActivated(const KFileItemList &items)