SSH Agent: Replace QString::SkipEmptyParts with Qt::SkipEmptyParts

This commit is contained in:
Alexandre Petit 2026-03-09 14:28:35 +01:00
parent 5831029dd9
commit 94428b483b
No known key found for this signature in database

View file

@ -672,7 +672,7 @@ bool OpenSSHKey::writePrivate(BinaryStream& stream)
bool OpenSSHKey::parseCertificate(QByteArray& data)
{
QString stringData = QString::fromLatin1(data);
QStringList elements = stringData.split(QRegularExpression("\\s+"), QString::SkipEmptyParts);
QStringList elements = stringData.split(QRegularExpression("\\s+"), Qt::SkipEmptyParts);
QStringList certificateTypeList = {
"ssh-ed25519-cert-v01@openssh.com",