┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/search
diff options
context:
space:
mode:
authorDavid Faure <[email protected]>2015-11-26 00:01:46 +0100
committerDavid Faure <[email protected]>2015-11-26 00:01:46 +0100
commit3a50ef642a9c33de39a636507d424f934c2c852b (patch)
tree03b3d481d897c2cf2aae4bf50f5df718afac421a /src/search
parent0587f994dc408e9ea98b0007f44179e2e4b6d4d0 (diff)
Fix incorrect QString -> QUrl conversion.
Diffstat (limited to 'src/search')
-rw-r--r--src/search/dolphinsearchbox.cpp2
1 files changed, 1 insertions, 1 deletions
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());