From 3a50ef642a9c33de39a636507d424f934c2c852b Mon Sep 17 00:00:00 2001 From: David Faure Date: Thu, 26 Nov 2015 00:01:46 +0100 Subject: [PATCH] Fix incorrect QString -> QUrl conversion. --- src/search/dolphinsearchbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp index 743d9113a..a925a97c9 100644 --- a/src/search/dolphinsearchbox.cpp +++ b/src/search/dolphinsearchbox.cpp @@ -478,7 +478,7 @@ void DolphinSearchBox::fromBalooSearchUrl(const QUrl& url) if (!customDir.isEmpty()) { setSearchPath(QUrl::fromLocalFile(customDir)); } else { - setSearchPath(QDir::homePath()); + setSearchPath(QUrl::fromLocalFile(QDir::homePath())); } setText(query.searchString()); -- 2.47.3