summaryrefslogtreecommitdiffstats
path: root/src/ui/label.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/label.cpp')
-rw-r--r--src/ui/label.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/label.cpp b/src/ui/label.cpp
index 977c7f3..288631c 100644
--- a/src/ui/label.cpp
+++ b/src/ui/label.cpp
@@ -50,21 +50,21 @@ CLabel::~CLabel()
// Creates a new button.
-BOOL CLabel::Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg)
+bool CLabel::Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg)
{
if ( eventMsg == EVENT_NULL ) eventMsg = GetUniqueEventMsg();
CControl::Create(pos, dim, icon, eventMsg);
- return TRUE;
+ return true;
}
// Management of an event.
-BOOL CLabel::EventProcess(const Event &event)
+bool CLabel::EventProcess(const Event &event)
{
//? CControl::EventProcess(event);
- return TRUE;
+ return true;
}