From: David Faure Date: Mon, 15 Dec 2008 11:53:29 +0000 (+0000) Subject: Ctrl+F when in trash:/ (or any other remote protocol) said "malformed url" because... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/04f6e7b374a312f8edaaca3d652b29dbb7d107ea?ds=inline Ctrl+F when in trash:/ (or any other remote protocol) said "malformed url" because KRun tried to download to a temp file via kioexec. %u tells it not to do that. Alternatively we could look up kfind.desktop and use KRun::run(KService). svn path=/trunk/KDE/kdebase/apps/; revision=897114 --- diff --git a/src/dolphinviewactionhandler.cpp b/src/dolphinviewactionhandler.cpp index 15e53f4cb..d563b3dd2 100644 --- a/src/dolphinviewactionhandler.cpp +++ b/src/dolphinviewactionhandler.cpp @@ -521,7 +521,7 @@ void DolphinViewActionHandler::slotAdjustViewProperties() void DolphinViewActionHandler::slotFindFile() { - KRun::run("kfind", m_currentView->url(), m_currentView->window()); + KRun::run("kfind %u", m_currentView->url(), m_currentView->window()); } void DolphinViewActionHandler::slotProperties()