diff options
author | Paul Gilbert | 2016-04-07 22:03:35 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-04-07 22:03:35 -0400 |
commit | 9f1bab55972b8a6f88b83c2391c40a038ffb509d (patch) | |
tree | f56c6af8d5606cba208b1663662597ff3861a356 /engines/titanic/gfx | |
parent | 41c08d186adc91111e9beccfeef80efb3fcc0fd6 (diff) | |
download | scummvm-rg350-9f1bab55972b8a6f88b83c2391c40a038ffb509d.tar.gz scummvm-rg350-9f1bab55972b8a6f88b83c2391c40a038ffb509d.tar.bz2 scummvm-rg350-9f1bab55972b8a6f88b83c2391c40a038ffb509d.zip |
TITANIC: Converting other message stubs to new format
Diffstat (limited to 'engines/titanic/gfx')
-rw-r--r-- | engines/titanic/gfx/st_button.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/titanic/gfx/st_button.h b/engines/titanic/gfx/st_button.h index fd2b0fa401..d3dd5c4e76 100644 --- a/engines/titanic/gfx/st_button.h +++ b/engines/titanic/gfx/st_button.h @@ -31,6 +31,9 @@ namespace Titanic { class CSTButton : public CBackground { DECLARE_MESSAGE_MAP + bool MouseButtonDownMsg(CMouseButtonDownMsg *msg); + bool MouseButtonUpMsg(CMouseButtonUpMsg *msg); + bool EnterViewMsg(CEnterViewMsg *msg); private: int _statusInc; CString _statusTarget; @@ -39,10 +42,6 @@ private: CString _string4; CString _string5; int _buttonFrame; -protected: - virtual bool MouseButtonDownMsg(CMouseButtonDownMsg *msg); - virtual bool MouseButtonUpMsg(CMouseButtonUpMsg *msg); - virtual bool EnterViewMsg(CEnterViewMsg *msg); public: CLASSDEF CSTButton(); |