Fix narrowing conversions

This commit is contained in:
Jonas Kvinge
2021-10-30 02:21:29 +02:00
parent a704412dee
commit 79ac53b2d9
111 changed files with 376 additions and 373 deletions

View File

@@ -445,7 +445,7 @@ QStringList InternetSearchView::TokenizeQuery(const QString &query) {
(*it).remove(')');
(*it).remove('"');
const int colon = (*it).indexOf(":");
const qint64 colon = (*it).indexOf(":");
if (colon != -1) {
(*it).remove(0, colon + 1);
}