mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 02:42:52 +00:00
syndication: fix build after 834866b9
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
834866b93f
commit
c4d7d641bf
1 changed files with 2 additions and 1 deletions
|
@ -112,7 +112,8 @@ QString dateTimeToString(time_t date)
|
|||
|
||||
QString calcMD5Sum(const QString& str)
|
||||
{
|
||||
return QLatin1String(QCryptographicHash::hash(str.toUtf8(), QCryptographicHash::Md5).toHex());
|
||||
QByteArray hash = QCryptographicHash::hash(str.toUtf8(), QCryptographicHash::Md5);
|
||||
return QLatin1String(hash.toHex().constData());
|
||||
}
|
||||
|
||||
QString resolveEntities(const QString& str)
|
||||
|
|
Loading…
Add table
Reference in a new issue