diff options
| author | Nicolas Fella <[email protected]> | 2023-10-31 16:15:58 +0100 |
|---|---|---|
| committer | Nicolas Fella <[email protected]> | 2023-11-05 16:36:50 +0000 |
| commit | 0cf79df76afd055073c6eccbb6527247d4f70fa2 (patch) | |
| tree | db92fc8890606b943c1a93159285028b736c5b0b /src/dolphinpart.cpp | |
| parent | 69c33627d638c8ff7e4016ddbb3c485a6b1868bf (diff) | |
Remove obsolete Konqueror workaround
This isn't needed any more with recent Konqueror
Diffstat (limited to 'src/dolphinpart.cpp')
| -rw-r--r-- | src/dolphinpart.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
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) |
