FakeVim: Replace foreach with ranged for loop

Change-Id: I0de9620ebf837be25e153bfd282b6564d4d2b115
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-10-05 13:59:53 +02:00
parent f0834e8725
commit 392585f76d
2 changed files with 16 additions and 15 deletions

View File

@@ -689,7 +689,8 @@ void FakeVimExCommandsWidget::initialize()
{
QMap<QString, QTreeWidgetItem *> sections;
foreach (Command *c, ActionManager::commands()) {
const QList<Command *> commands = ActionManager::commands();
for (Command *c : commands) {
if (c->action() && c->action()->isSeparator())
continue;
@@ -1881,7 +1882,7 @@ void FakeVimPluginPrivate::documentRenamed(
void FakeVimPluginPrivate::renameFileNameInEditors(const FilePath &oldPath, const FilePath &newPath)
{
foreach (FakeVimHandler *handler, m_editorToHandler.values()) {
for (FakeVimHandler *handler : m_editorToHandler) {
if (handler->currentFileName() == oldPath.toString())
handler->setCurrentFileName(newPath.toString());
}
@@ -1902,16 +1903,16 @@ void FakeVimPluginPrivate::setUseFakeVimInternal(bool on)
//ICore *core = ICore::instance();
//core->updateAdditionalContexts(Context(FAKEVIM_CONTEXT),
// Context());
foreach (IEditor *editor, m_editorToHandler.keys())
m_editorToHandler[editor]->setupWidget();
for (FakeVimHandler *handler : m_editorToHandler)
handler->setupWidget();
} else {
//ICore *core = ICore::instance();
//core->updateAdditionalContexts(Context(),
// Context(FAKEVIM_CONTEXT));
resetCommandBuffer();
foreach (IEditor *editor, m_editorToHandler.keys()) {
if (auto textDocument = qobject_cast<const TextDocument *>(editor->document()))
m_editorToHandler[editor]->restoreWidget(textDocument->tabSettings().m_tabSize);
for (auto it = m_editorToHandler.constBegin(); it != m_editorToHandler.constEnd(); ++it) {
if (auto textDocument = qobject_cast<const TextDocument *>(it.key()->document()))
it.value()->restoreWidget(textDocument->tabSettings().m_tabSize);
}
}
}
@@ -1919,8 +1920,8 @@ void FakeVimPluginPrivate::setUseFakeVimInternal(bool on)
void FakeVimPluginPrivate::setShowRelativeLineNumbers(bool on)
{
if (on && fakeVimSettings()->useFakeVim.value()) {
foreach (IEditor *editor, m_editorToHandler.keys())
createRelativeNumberWidget(editor);
for (auto it = m_editorToHandler.constBegin(); it != m_editorToHandler.constEnd(); ++it)
createRelativeNumberWidget(it.key());
}
}