diff options
Diffstat (limited to '')
-rw-r--r-- | source/cWindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/cWindow.h b/source/cWindow.h index cbb90b893..37ac5239d 100644 --- a/source/cWindow.h +++ b/source/cWindow.h @@ -46,11 +46,11 @@ public: cWindow(cWindowOwner * a_Owner, bool a_bInventoryVisible, WindowType a_WindowType, int a_WindowID); ~cWindow(); - int GetWindowID() { return m_WindowID; } + int GetWindowID(void) const { return m_WindowID; } int GetWindowType(void) const { return m_WindowType; } - cItem* GetSlots() { return m_Slots; } - int GetNumSlots() { return m_NumSlots; } + cItem* GetSlots(void) const { return m_Slots; } + int GetNumSlots(void) const { return m_NumSlots; } cItem* GetSlot( int a_Slot ); |