mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
GRAPHICS: MACGUI: add comment for enableScrollbar
This commit is contained in:
parent
a2f48f5343
commit
27986beebc
@ -287,7 +287,6 @@ public:
|
||||
/**
|
||||
* See BaseMacWindow.
|
||||
*/
|
||||
void enableScrollbar(bool active) { _hasScrollBar = active; }
|
||||
virtual bool processEvent(Common::Event &event) override;
|
||||
virtual bool hasAllFocus() override { return _beingDragged || _beingResized; }
|
||||
|
||||
@ -305,6 +304,11 @@ public:
|
||||
void loadBorder(Common::SeekableReadStream &file, uint32 flags, int lo = -1, int ro = -1, int to = -1, int bo = -1);
|
||||
void loadBorder(Common::SeekableReadStream &file, uint32 flags, BorderOffsets offsets);
|
||||
void disableBorder();
|
||||
/**
|
||||
* we better set this before we load the border
|
||||
* @param scrollbar state
|
||||
*/
|
||||
void enableScrollbar(bool active) { _hasScrollBar = active; }
|
||||
|
||||
/**
|
||||
* Indicate whether the window can be closed (false by default).
|
||||
|
Loading…
Reference in New Issue
Block a user