From cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 16 Sep 2012 19:28:16 +0300 Subject: Add const to variables with type size_t. --- src/spellmanager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/spellmanager.cpp') diff --git a/src/spellmanager.cpp b/src/spellmanager.cpp index 6111d3a9b..746331851 100644 --- a/src/spellmanager.cpp +++ b/src/spellmanager.cpp @@ -362,11 +362,11 @@ std::string SpellManager::autoComplete(std::string partName) while (i != i_end) { const TextCommand *const cmd = *i; - std::string line = cmd->getCommand(); + const std::string line = cmd->getCommand(); if (line != "") { - size_t pos = line.find(partName, 0); + const size_t pos = line.find(partName, 0); if (pos == 0) { if (newName != "") -- cgit v1.2.3-70-g09d2