mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
MACGUI: Fix warning
This commit is contained in:
parent
49c72c884a
commit
06e1445fd1
@ -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; }
|
||||
|
Loading…
Reference in New Issue
Block a user