From f1812857720449697c9106a7a3776b7202258cb3 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 18 Nov 2015 19:02:45 +0300 Subject: Fix code style in beingequipbackend and add some consts to it. --- src/equipment.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/equipment.h') diff --git a/src/equipment.h b/src/equipment.h index 2de7ba33a..149b1b340 100644 --- a/src/equipment.h +++ b/src/equipment.h @@ -50,8 +50,8 @@ class Equipment final class Backend notfinal { public: - virtual Item *getEquipment(const int index) - const A_WARN_UNUSED = 0; + virtual const Item *getEquipment(const int index) + const A_WARN_UNUSED = 0; virtual void clear() = 0; @@ -62,7 +62,7 @@ class Equipment final /** * Get equipment at the given slot. */ - Item *getEquipment(const int index) const A_WARN_UNUSED + const Item *getEquipment(const int index) const A_WARN_UNUSED { return mBackend ? mBackend->getEquipment(index) : nullptr; } /** -- cgit v1.2.3-60-g2f50