diff options
| author | David Faure <[email protected]> | 2015-11-26 00:01:46 +0100 |
|---|---|---|
| committer | David Faure <[email protected]> | 2015-11-26 00:01:46 +0100 |
| commit | 3a50ef642a9c33de39a636507d424f934c2c852b (patch) | |
| tree | 03b3d481d897c2cf2aae4bf50f5df718afac421a | |
| parent | 0587f994dc408e9ea98b0007f44179e2e4b6d4d0 (diff) | |
Fix incorrect QString -> QUrl conversion.
| -rw-r--r-- | src/search/dolphinsearchbox.cpp | 2 |
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()); |
