mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
clean: remaning deprecated QCryptographicHash::addData
usages
This commit is contained in:
parent
618310f772
commit
c864a9a897
|
@ -721,8 +721,8 @@ void BglArticleRequest::run()
|
|||
string const & targetHeadword = displayedHeadword.size() ? displayedHeadword : headword;
|
||||
|
||||
QCryptographicHash hash( QCryptographicHash::Md5 );
|
||||
hash.addData( targetHeadword.data(), targetHeadword.size() + 1 ); // with 0
|
||||
hash.addData( articleText.data(), articleText.size() );
|
||||
hash.addData( { targetHeadword.data(), static_cast< qsizetype >( targetHeadword.size() + 1 ) } ); // with 0
|
||||
hash.addData( { articleText.data(), static_cast< qsizetype >( articleText.size() ) } );
|
||||
|
||||
if ( !articleBodiesIncluded.insert( hash.result() ).second ) {
|
||||
continue; // Already had this body
|
||||
|
|
|
@ -621,7 +621,7 @@ void MdxArticleRequest::run()
|
|||
}
|
||||
|
||||
QCryptographicHash hash( QCryptographicHash::Md5 );
|
||||
hash.addData( articleBody.data(), articleBody.size() );
|
||||
hash.addData( { articleBody.data(), static_cast< qsizetype >( articleBody.length() ) } );
|
||||
if ( !articleBodiesIncluded.insert( hash.result() ).second ) {
|
||||
continue; // Already had this body
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue