From b8182e80a378572ff4b245f35616ca8e55dc0540 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Thu, 21 Mar 2024 10:07:41 +0100 Subject: Fix darwin build with deprecations disabled MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit QString::SkipEmptyParts has been deprecated in Qt 5.14. Pick-to: 6.6 6.5 6.2 5.15 Change-Id: I59a46931c241fb05d350f2e83abb96a5a611ecec Reviewed-by: Jannis Völker (cherry picked from commit f9d6b4637455a4cefaecd50d90c6d99919964f20) Reviewed-by: Qt Cherry-pick Bot --- src/opcua/x509/openssl_symbols.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opcua/x509/openssl_symbols.cpp b/src/opcua/x509/openssl_symbols.cpp index 7831c79..acf3ffc 100644 --- a/src/opcua/x509/openssl_symbols.cpp +++ b/src/opcua/x509/openssl_symbols.cpp @@ -506,7 +506,7 @@ static QStringList libraryPathList() QStringList paths; # ifdef Q_OS_DARWIN paths = QString::fromLatin1(qgetenv("DYLD_LIBRARY_PATH")) - .split(QLatin1Char(':'), QString::SkipEmptyParts); + .split(QLatin1Char(':'), Qt::SkipEmptyParts); // search in .app/Contents/Frameworks UInt32 packageType; -- cgit v1.2.3