mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
fixed code
This commit is contained in:
parent
caec5838b9
commit
de0cb89dda
|
@ -65,7 +65,7 @@ BookmarkItem *QmlBookmarks::getBookmarkItem(QmlBookmarkTreeNode *treeNode) const
|
|||
items = bookmarks->searchBookmarks(QUrl::fromEncoded(treeNode->url().toUtf8()));
|
||||
}
|
||||
|
||||
for (auto item : items) {
|
||||
for (const auto item : qAsConst(items)) {
|
||||
if (isTreeNodeEqualsItem(treeNode, item)) {
|
||||
return item;
|
||||
}
|
||||
|
@ -242,7 +242,7 @@ QList<QObject*> QmlBookmarks::search(const QVariantMap &map) const
|
|||
items = mApp->bookmarks()->searchBookmarks(QUrl::fromEncoded(urlString.toUtf8()));
|
||||
}
|
||||
QList<QObject*> ret;
|
||||
for (auto item : items) {
|
||||
for (auto item : qAsConst(items)) {
|
||||
ret.append(bookmarkTreeNodeData->get(item));
|
||||
}
|
||||
return ret;
|
||||
|
@ -308,7 +308,7 @@ bool QmlBookmarks::update(QObject *object, const QVariantMap &changes) const
|
|||
QmlBookmarkTreeNode *QmlBookmarks::get(const QString &string) const
|
||||
{
|
||||
auto items = mApp->bookmarks()->searchBookmarks(QUrl(string));
|
||||
for (auto item : items) {
|
||||
for (const auto item : qAsConst(items)) {
|
||||
if (item->urlString() == string) {
|
||||
return bookmarkTreeNodeData->get(item);
|
||||
}
|
||||
|
@ -334,7 +334,7 @@ QList<QObject*> QmlBookmarks::getChildren(QObject *object) const
|
|||
}
|
||||
|
||||
auto items = bookmarkItem->children();
|
||||
for (auto item : items) {
|
||||
for (auto item : qAsConst(items)) {
|
||||
ret.append(bookmarkTreeNodeData->get(item));
|
||||
}
|
||||
|
||||
|
|
|
@ -116,7 +116,7 @@ QList<QObject*> QmlBookmarkTreeNode::children() const
|
|||
{
|
||||
const auto items = m_item->children();
|
||||
QList<QObject*> ret;
|
||||
for (const auto &item : items) {
|
||||
for (const auto &item : qAsConst(items)) {
|
||||
ret.append(bookmarkTreeNodeData->get(item));
|
||||
}
|
||||
return ret;
|
||||
|
|
|
@ -27,7 +27,7 @@ QmlFileUtils::QmlFileUtils(QString filePath, QObject *parent)
|
|||
// Get the plugin root directory - of the form
|
||||
// some-path-in-plugin-paths/qml/plugin-directory
|
||||
const QStringList dirs = DataPaths::allPaths(DataPaths::Plugins);
|
||||
for (QString path : dirs) {
|
||||
for (QString path : qAsConst(dirs)) {
|
||||
path.append(QSL("/qml/"));
|
||||
if (filePath.contains(path)) {
|
||||
m_path = path;
|
||||
|
|
|
@ -46,7 +46,7 @@ QList<QObject*> QmlHistory::search(const QString &text)
|
|||
QList<QObject*> list;
|
||||
QList<HistoryEntry*> result = mApp->history()->searchHistoryEntry(text);
|
||||
|
||||
foreach(auto entry, result) {
|
||||
for (const auto entry : qAsConst(result)) {
|
||||
auto item = historyItemData->get(entry);
|
||||
list.append(item);
|
||||
}
|
||||
|
|
|
@ -32,7 +32,10 @@ void QmlAction::setProperties(const QVariantMap &map)
|
|||
return;
|
||||
}
|
||||
|
||||
for (const QString &key : map.keys()) {
|
||||
QMapIterator<QString, QVariant> it(map);
|
||||
while (it.hasNext()) {
|
||||
it.next();
|
||||
const QString key = it.key();
|
||||
if (key == QSL("icon")) {
|
||||
QString iconPath = map.value(key).toString();
|
||||
QIcon icon;
|
||||
|
|
|
@ -64,7 +64,9 @@ QmlMenu *QmlMenu::addMenu(const QVariantMap &map)
|
|||
}
|
||||
|
||||
QMenu *newMenu = new QMenu();
|
||||
for (const QString &key : map.keys()) {
|
||||
QMapIterator<QString, QVariant> it(map);
|
||||
while (it.hasNext()) {
|
||||
const QString key = it.key();
|
||||
if (key == QSL("icon")) {
|
||||
QString iconPath = map.value(key).toString();
|
||||
QIcon icon;
|
||||
|
|
|
@ -460,7 +460,7 @@ BrowserWindow *QmlTabs::getWindow(int windowId) const
|
|||
return mApp->getWindow();
|
||||
}
|
||||
|
||||
for(BrowserWindow *window : mApp->windowIdHash().keys()) {
|
||||
for (BrowserWindow *window : mApp->windowIdHash().keys()) {
|
||||
if (mApp->windowIdHash().value(window) == windowId) {
|
||||
return window;
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@ QmlUserScripts::QmlUserScripts(QObject *parent)
|
|||
QmlUserScripts::~QmlUserScripts()
|
||||
{
|
||||
// remove scripts added by the plugin
|
||||
for (const QWebEngineScript &webEngineScript : m_webEngineScripts) {
|
||||
for (const QWebEngineScript &webEngineScript : qAsConst(m_webEngineScripts)) {
|
||||
mApp->webProfile()->scripts()->remove(webEngineScript);
|
||||
}
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ bool QmlUserScripts::empty() const
|
|||
QList<QObject *> QmlUserScripts::toQObjectList(QList<QWebEngineScript> list) const
|
||||
{
|
||||
QList<QObject *> userScriptList;
|
||||
for (const QWebEngineScript &script : list) {
|
||||
for (const QWebEngineScript &script : qAsConst(list)) {
|
||||
QmlUserScript *userScript = new QmlUserScript();
|
||||
userScript->setWebEngineScript(script);
|
||||
userScriptList.append(userScript);
|
||||
|
|
Loading…
Reference in New Issue
Block a user