mirror of
https://github.com/zealdocs/zeal.git
synced 2024-11-22 12:33:20 +03:00
refactor: replace deprecated qAsConst with std::as_const() (#1565)
Reference: https://github.com/qt/qtbase/blob/v6.6.0/src/corelib/global/qttypetraits.h#L32
This commit is contained in:
parent
2cefcd4542
commit
9630cc94c1
@ -458,7 +458,7 @@ void Docset::loadSymbols(const QString &symbolType) const
|
||||
// with it.first and it.second respectively pointing to the start and the end
|
||||
// of the range of nodes having symbolType as key. It effectively represents a
|
||||
// contiguous view over the nodes with a specified key.
|
||||
for (auto it = qAsConst(m_symbolStrings).equal_range(symbolType); it.first != it.second; ++it.first) {
|
||||
for (auto it = std::as_const(m_symbolStrings).equal_range(symbolType); it.first != it.second; ++it.first) {
|
||||
loadSymbols(symbolType, it.first.value());
|
||||
}
|
||||
}
|
||||
@ -519,7 +519,7 @@ void Docset::createIndex()
|
||||
}
|
||||
|
||||
// Drop old indexes
|
||||
for (const QString &oldIndexName : qAsConst(oldIndexes)) {
|
||||
for (const QString &oldIndexName : std::as_const(oldIndexes)) {
|
||||
m_db->execute(indexDropQuery.arg(oldIndexName));
|
||||
}
|
||||
|
||||
|
@ -97,7 +97,7 @@ void DocsetMetadata::save(const QString &path, const QString &version)
|
||||
|
||||
if (!m_urls.isEmpty()) {
|
||||
QJsonArray urls;
|
||||
for (const QUrl &url : qAsConst(m_urls)) {
|
||||
for (const QUrl &url : std::as_const(m_urls)) {
|
||||
urls.append(url.toString());
|
||||
}
|
||||
|
||||
|
@ -101,7 +101,7 @@ void DocsetRegistry::setFuzzySearchEnabled(bool enabled)
|
||||
|
||||
m_isFuzzySearchEnabled = enabled;
|
||||
|
||||
for (Docset *docset : qAsConst(m_docsets)) {
|
||||
for (Docset *docset : std::as_const(m_docsets)) {
|
||||
docset->setFuzzySearchEnabled(enabled);
|
||||
}
|
||||
}
|
||||
@ -193,7 +193,7 @@ Docset *DocsetRegistry::docset(int index) const
|
||||
|
||||
Docset *DocsetRegistry::docsetForUrl(const QUrl &url)
|
||||
{
|
||||
for (Docset *docset : qAsConst(m_docsets)) {
|
||||
for (Docset *docset : std::as_const(m_docsets)) {
|
||||
if (docset->baseUrl().isParentOf(url))
|
||||
return docset;
|
||||
}
|
||||
@ -226,7 +226,7 @@ void DocsetRegistry::_runQuery(const QString &query)
|
||||
|
||||
const SearchQuery searchQuery = SearchQuery::fromString(query);
|
||||
if (searchQuery.hasKeywords()) {
|
||||
for (Docset *docset : qAsConst(m_docsets)) {
|
||||
for (Docset *docset : std::as_const(m_docsets)) {
|
||||
if (searchQuery.hasKeywords(docset->keywords()))
|
||||
enabledDocsets << docset;
|
||||
}
|
||||
|
@ -687,7 +687,7 @@ QNetworkReply *DocsetsDialog::download(const QUrl &url)
|
||||
|
||||
void DocsetsDialog::cancelDownloads()
|
||||
{
|
||||
for (QNetworkReply *reply : qAsConst(m_replies)) {
|
||||
for (QNetworkReply *reply : std::as_const(m_replies)) {
|
||||
// Hide progress bar
|
||||
QListWidgetItem *listItem
|
||||
= ui->availableDocsetList->item(reply->property(ListItemIndexProperty).toInt());
|
||||
|
@ -152,7 +152,7 @@ bool QxtGlobalShortcutPrivate::registerShortcut(quint32 nativeKey, quint32 nativ
|
||||
}
|
||||
|
||||
bool failed = false;
|
||||
for (xcb_void_cookie_t cookie : qAsConst(xcbCookies)) {
|
||||
for (xcb_void_cookie_t cookie : std::as_const(xcbCookies)) {
|
||||
QScopedPointer<xcb_generic_error_t, QScopedPointerPodDeleter> error(xcb_request_check(xcbConnection, cookie));
|
||||
failed = !error.isNull();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user