diff options
Diffstat (limited to 'engines/wintermute/UI/UIObject.h')
-rw-r--r-- | engines/wintermute/UI/UIObject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/UI/UIObject.h b/engines/wintermute/UI/UIObject.h index 910a2045cc..272b094131 100644 --- a/engines/wintermute/UI/UIObject.h +++ b/engines/wintermute/UI/UIObject.h @@ -43,12 +43,12 @@ public: HRESULT GetTotalOffset(int *OffsetX, int *OffsetY);
bool _canFocus;
HRESULT Focus();
- virtual HRESULT HandleMouse(TMouseEvent Event, TMouseButton Button);
+ virtual HRESULT handleMouse(TMouseEvent Event, TMouseButton Button);
bool IsFocused();
bool _parentNotify;
DECLARE_PERSISTENT(CUIObject, CBObject)
CUIObject *_parent;
- virtual HRESULT Display(int OffsetX = 0, int OffsetY = 0);
+ virtual HRESULT display(int OffsetX = 0, int OffsetY = 0);
virtual void CorrectSize();
bool _sharedFonts;
bool _sharedImages;
|