From: Nicolas Fella Date: Tue, 31 Oct 2023 15:15:58 +0000 (+0100) Subject: Remove obsolete Konqueror workaround X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/0cf79df76afd055073c6eccbb6527247d4f70fa2?ds=inline Remove obsolete Konqueror workaround This isn't needed any more with recent Konqueror --- diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index a3856de6a..d998852d5 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)