1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-07-07 10:51:45 +00:00

Remove obsolete Konqueror workaround

This isn't needed any more with recent Konqueror
This commit is contained in:
Nicolas Fella 2023-10-31 16:15:58 +01:00
parent 69c33627d6
commit 0cf79df76a

View File

@ -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)