aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/pet_control
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-24 20:52:21 -0400
committerPaul Gilbert2016-07-24 20:52:21 -0400
commit875002daea7a007c2727685a767eaaf3709a5252 (patch)
treee8101ea5439f951317a413e9ee69e7672b9aeeed /engines/titanic/pet_control
parentc6e2f4e68020dddea2a8248e8dd7ecdcb2147314 (diff)
downloadscummvm-rg350-875002daea7a007c2727685a767eaaf3709a5252.tar.gz
scummvm-rg350-875002daea7a007c2727685a767eaaf3709a5252.tar.bz2
scummvm-rg350-875002daea7a007c2727685a767eaaf3709a5252.zip
TITANIC: Add semicolon to DECLARE_MESSAGE_MAP usage
Diffstat (limited to 'engines/titanic/pet_control')
-rw-r--r--engines/titanic/pet_control/pet_control.h2
-rw-r--r--engines/titanic/pet_control/pet_drag_chev.h2
-rw-r--r--engines/titanic/pet_control/pet_graphic.h2
-rw-r--r--engines/titanic/pet_control/pet_graphic2.h2
-rw-r--r--engines/titanic/pet_control/pet_leaf.h2
-rw-r--r--engines/titanic/pet_control/pet_mode_off.h2
-rw-r--r--engines/titanic/pet_control/pet_mode_on.h2
-rw-r--r--engines/titanic/pet_control/pet_mode_panel.h2
-rw-r--r--engines/titanic/pet_control/pet_pannel1.h2
-rw-r--r--engines/titanic/pet_control/pet_pannel2.h2
-rw-r--r--engines/titanic/pet_control/pet_pannel3.h2
11 files changed, 11 insertions, 11 deletions
diff --git a/engines/titanic/pet_control/pet_control.h b/engines/titanic/pet_control/pet_control.h
index 468c4f3b14..5e77b15230 100644
--- a/engines/titanic/pet_control/pet_control.h
+++ b/engines/titanic/pet_control/pet_control.h
@@ -43,7 +43,7 @@ namespace Titanic {
enum SummonResult { SUMMON_CANT = 0, SUMMON_PRESENT = 1, SUMMON_CAN = 2 };
class CPetControl : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
struct PetEventInfo {
int _id;
CPetSection *_target;
diff --git a/engines/titanic/pet_control/pet_drag_chev.h b/engines/titanic/pet_control/pet_drag_chev.h
index 153b954c40..9f4a6f0dc9 100644
--- a/engines/titanic/pet_control/pet_drag_chev.h
+++ b/engines/titanic/pet_control/pet_drag_chev.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPetDragChev : public CPetGraphic2 {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
protected:
bool MouseDragStartMsg(CMouseDragStartMsg *msg);
bool MouseDragMoveMsg(CMouseDragMoveMsg *msg);
diff --git a/engines/titanic/pet_control/pet_graphic.h b/engines/titanic/pet_control/pet_graphic.h
index 082a27fe0d..630c8446eb 100644
--- a/engines/titanic/pet_control/pet_graphic.h
+++ b/engines/titanic/pet_control/pet_graphic.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPetGraphic : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
diff --git a/engines/titanic/pet_control/pet_graphic2.h b/engines/titanic/pet_control/pet_graphic2.h
index 6b832fef7d..58852fc65e 100644
--- a/engines/titanic/pet_control/pet_graphic2.h
+++ b/engines/titanic/pet_control/pet_graphic2.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPetGraphic2 : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
diff --git a/engines/titanic/pet_control/pet_leaf.h b/engines/titanic/pet_control/pet_leaf.h
index 8428647eab..0c21352e39 100644
--- a/engines/titanic/pet_control/pet_leaf.h
+++ b/engines/titanic/pet_control/pet_leaf.h
@@ -28,7 +28,7 @@
namespace Titanic {
class PETLeaf : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
diff --git a/engines/titanic/pet_control/pet_mode_off.h b/engines/titanic/pet_control/pet_mode_off.h
index a906bc6174..9162270953 100644
--- a/engines/titanic/pet_control/pet_mode_off.h
+++ b/engines/titanic/pet_control/pet_mode_off.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPetModeOff : public CToggleSwitch {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
CPetModeOff();
diff --git a/engines/titanic/pet_control/pet_mode_on.h b/engines/titanic/pet_control/pet_mode_on.h
index 074e33ea8c..f77fd1f447 100644
--- a/engines/titanic/pet_control/pet_mode_on.h
+++ b/engines/titanic/pet_control/pet_mode_on.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPetModeOn : public CToggleSwitch {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
CPetModeOn();
diff --git a/engines/titanic/pet_control/pet_mode_panel.h b/engines/titanic/pet_control/pet_mode_panel.h
index 0812c11942..f37c543b98 100644
--- a/engines/titanic/pet_control/pet_mode_panel.h
+++ b/engines/titanic/pet_control/pet_mode_panel.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPetModePanel : public CToggleSwitch {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
CPetModePanel();
diff --git a/engines/titanic/pet_control/pet_pannel1.h b/engines/titanic/pet_control/pet_pannel1.h
index 7ca7378a09..f39314fed9 100644
--- a/engines/titanic/pet_control/pet_pannel1.h
+++ b/engines/titanic/pet_control/pet_pannel1.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPetPannel1 : public CPetGraphic {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
diff --git a/engines/titanic/pet_control/pet_pannel2.h b/engines/titanic/pet_control/pet_pannel2.h
index 62dd2aae2b..f820847035 100644
--- a/engines/titanic/pet_control/pet_pannel2.h
+++ b/engines/titanic/pet_control/pet_pannel2.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPetPannel2 : public CPetGraphic {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
diff --git a/engines/titanic/pet_control/pet_pannel3.h b/engines/titanic/pet_control/pet_pannel3.h
index 2acf269873..dd0d2f9fa2 100644
--- a/engines/titanic/pet_control/pet_pannel3.h
+++ b/engines/titanic/pet_control/pet_pannel3.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPetPannel3 : public CPetGraphic {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;