summaryrefslogtreecommitdiff
path: root/src/spellmanager.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-09-16 19:28:16 +0300
committerAndrei Karas <akaras@inbox.ru>2012-09-16 19:28:16 +0300
commitcd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96 (patch)
treefdda7e2c3d93b35771f6eb79c22dce9301082f19 /src/spellmanager.cpp
parentf8fc3380197c078a6dcff02351d835c3022411e1 (diff)
downloadplus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.gz
plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.bz2
plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.xz
plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.zip
Add const to variables with type size_t.
Diffstat (limited to 'src/spellmanager.cpp')
-rw-r--r--src/spellmanager.cpp4
1 files changed, 2 insertions, 2 deletions
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 != "")