MACGUI: Fix warning

This commit is contained in:
Eugene Sandulenko 2017-07-18 00:02:45 +02:00
parent 49c72c884a
commit 06e1445fd1

View File

@ -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; }