From c430b75e370a21a17f80d4ba3acd84111828a462 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 26 Sep 2013 20:08:44 +0300 Subject: add const for methods return values. --- 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 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 SpellManager::getAll() const +const std::vector &SpellManager::getAll() const { return mSpellsVector; } -- cgit v1.2.3-60-g2f50