diff options
| author | David Faure <[email protected]> | 2008-12-15 11:53:29 +0000 |
|---|---|---|
| committer | David Faure <[email protected]> | 2008-12-15 11:53:29 +0000 |
| commit | 04f6e7b374a312f8edaaca3d652b29dbb7d107ea (patch) | |
| tree | 34cbb65fb258f9a48eeeead6308b4830c7fb00c1 /src/dolphinviewactionhandler.cpp | |
| parent | d2fbbd44b422cc64ad184886670ca22df9dced5b (diff) | |
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
Diffstat (limited to 'src/dolphinviewactionhandler.cpp')
| -rw-r--r-- | src/dolphinviewactionhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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() |
