QCryptographicHash documentation correction

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2023-11-05 10:55:30 +02:00
parent fe5b630b28
commit daad8c2e91

View file

@ -128,7 +128,7 @@ QCryptographicHashPrivate::QCryptographicHashPrivate()
QCryptographicHash with chunks of data that have different sizes either -
the chunks size must be fixed, i.e. QT_BUFFSIZE. In other words, if you
cannot tell what the optimal buffer size or when to use it then use a
generic algorithms.
generic algorithm.
*/
/*!
@ -200,7 +200,6 @@ QByteArray QCryptographicHash::result() const
qWarning("QCryptographicHash::result called without any data");
return QByteArray();
}
return d->katContext.result();
}