summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Uwe Broulik <kai.uwe.broulik@basyskom.com>2024-03-21 10:07:41 +0100
committerKai Uwe Broulik <kai.uwe.broulik@basyskom.com>2024-03-21 11:09:45 +0100
commitf9d6b4637455a4cefaecd50d90c6d99919964f20 (patch)
tree5ee1a999eccecce4cb17cb961fdab5bdeccdc2ba
parent4b9164cccd2652ee9cb02de6a4e814e7b18a9b5d (diff)
Fix darwin build with deprecations disabled
QString::SkipEmptyParts has been deprecated in Qt 5.14. Pick-to: 6.7 6.6 6.5 6.2 5.15 Change-Id: I59a46931c241fb05d350f2e83abb96a5a611ecec Reviewed-by: Jannis Völker <jannis.voelker@basyskom.com>
-rw-r--r--src/opcua/x509/openssl_symbols.cpp2
1 files changed, 1 insertions, 1 deletions
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;