summaryrefslogtreecommitdiffstats
path: root/src/ui/group.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/group.cpp')
-rw-r--r--src/ui/group.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/group.cpp b/src/ui/group.cpp
index 73f8b36..a19e39b 100644
--- a/src/ui/group.cpp
+++ b/src/ui/group.cpp
@@ -50,7 +50,7 @@ CGroup::~CGroup()
// Creates a new button.
-BOOL CGroup::Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg)
+bool CGroup::Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg)
{
if ( eventMsg == EVENT_NULL ) eventMsg = GetUniqueEventMsg();
@@ -67,15 +67,15 @@ BOOL CGroup::Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg)
SetName(name);
}
- return TRUE;
+ return true;
}
// Management of an event.
-BOOL CGroup::EventProcess(const Event &event)
+bool CGroup::EventProcess(const Event &event)
{
- return TRUE;
+ return true;
}