mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
SSH Agent: Replace QString::SkipEmptyParts with Qt::SkipEmptyParts
This commit is contained in:
parent
5831029dd9
commit
94428b483b
1 changed files with 1 additions and 1 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue