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
This commit is contained in:
David Faure 2008-12-15 11:53:29 +00:00
parent d2fbbd44b4
commit 04f6e7b374

View file

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