From d9de9db6f8adcc12baf9b499358d7d386bffdc9e Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Wed, 18 Jan 2023 15:56:59 +0100 Subject: [PATCH] Utils: Adapt to change in FilePath Change-Id: Ibd3c53c49390cbf77d8b0563bab7ddff216394c7 Reviewed-by: hjk --- src/libs/utils/filepath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/utils/filepath.cpp b/src/libs/utils/filepath.cpp index a724026852f..574cc6632e8 100644 --- a/src/libs/utils/filepath.cpp +++ b/src/libs/utils/filepath.cpp @@ -1678,7 +1678,7 @@ FilePath FilePath::resolvePath(const FilePath &tail) const */ FilePath FilePath::resolvePath(const QString &tail) const { - return resolvePath(FilePath::fromString(tail)); + return resolvePath(FilePath::fromUserInput(tail)); } expected_str FilePath::localSource() const