From 06e1445fd1b304e97c419b2782f14f48f5e10387 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 18 Jul 2017 00:02:45 +0200 Subject: MACGUI: Fix warning --- graphics/macgui/macfontmanager.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'graphics/macgui/macfontmanager.h') diff --git a/graphics/macgui/macfontmanager.h b/graphics/macgui/macfontmanager.h index 20c645a7bd..0fb92ace52 100644 --- a/graphics/macgui/macfontmanager.h +++ b/graphics/macgui/macfontmanager.h @@ -77,9 +77,9 @@ public: _font = NULL; } - const int getId() const { return _id; }; - const int getSize() const { return _size; } - const int getSlant() const { return _slant; } + int getId() const { return _id; }; + int getSize() const { return _size; } + int getSlant() const { return _slant; } Common::String getName() { return _name; } void setName(Common::String &name) { _name = name; } void setName(const char *name) { _name = name; } -- cgit v1.2.3