diff options
Diffstat (limited to 'src/search/dolphinsearchbox.cpp')
| -rw-r--r-- | src/search/dolphinsearchbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp index 9e908de5d..d4ebba8c0 100644 --- a/src/search/dolphinsearchbox.cpp +++ b/src/search/dolphinsearchbox.cpp @@ -156,7 +156,7 @@ void DolphinSearchBox::fromSearchUrl(const QUrl& url) fromBalooSearchUrl(url); } else if (url.scheme() == "filenamesearch") { setText(url.queryItemValue("search")); - setSearchPath(url.queryItemValue("url")); + setSearchPath(QUrl::fromUserInput(url.queryItemValue("url"), QString(), QUrl::AssumeLocalFile)); m_contentButton->setChecked(url.queryItemValue("checkContent") == "yes"); } else { setText(QString()); @@ -474,7 +474,7 @@ void DolphinSearchBox::fromBalooSearchUrl(const QUrl& url) const QString customDir = query.includeFolder(); if (!customDir.isEmpty()) { - setSearchPath(customDir); + setSearchPath(QUrl::fromLocalFile(customDir)); } else { setSearchPath(QDir::homePath()); } |
