From 41424d010934e0a47958d0192c7c4de69ea3e955 Mon Sep 17 00:00:00 2001 From: Emmanuel Pescosta Date: Thu, 26 Feb 2015 17:15:18 +0100 Subject: [PATCH] Next QUrl porting bug found: search include directories --- src/search/dolphinsearchbox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp index 9e908de5d8..d4ebba8c02 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()); }