summaryrefslogtreecommitdiff
path: root/src/spellmanager.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-26 20:08:44 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-28 21:17:59 +0300
commitc430b75e370a21a17f80d4ba3acd84111828a462 (patch)
tree6d4ea8421de26c623c4196a7dd2aa3d86c5add01 /src/spellmanager.cpp
parent1dcb42c708c92216c7c9cacd3d3c9301e71e6006 (diff)
downloadplus-c430b75e370a21a17f80d4ba3acd84111828a462.tar.gz
plus-c430b75e370a21a17f80d4ba3acd84111828a462.tar.bz2
plus-c430b75e370a21a17f80d4ba3acd84111828a462.tar.xz
plus-c430b75e370a21a17f80d4ba3acd84111828a462.zip
add const for methods return values.
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 2038c478a..91cfb1ff2 100644
--- a/src/spellmanager.cpp
+++ b/src/spellmanager.cpp
@@ -61,7 +61,7 @@ TextCommand* SpellManager::getSpell(const int spellId) const
return it != mSpells.end() ? (*it).second : nullptr;
}
-TextCommand* SpellManager::getSpellByItem(const int itemId) const
+const TextCommand* SpellManager::getSpellByItem(const int itemId) const
{
return getSpell(itemId - SPELL_MIN_ID);
}
@@ -116,7 +116,7 @@ bool SpellManager::addSpell(TextCommand *const spell)
return false;
}
-std::vector<TextCommand*> SpellManager::getAll() const
+const std::vector<TextCommand*> &SpellManager::getAll() const
{
return mSpellsVector;
}