summaryrefslogtreecommitdiffstats
path: root/src/ui/mainshort.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-06-10 15:28:12 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-06-10 15:28:12 +0200
commit697fbdabf10d956e0f13bfbc9414d3db40f0c535 (patch)
treeab80ba3119d07b11da5478009b905edb702c103f /src/ui/mainshort.h
parent680af178196217bdd255d2bc851f240983144ac1 (diff)
downloadcolobot-697fbdabf10d956e0f13bfbc9414d3db40f0c535.tar.gz
colobot-697fbdabf10d956e0f13bfbc9414d3db40f0c535.tar.bz2
colobot-697fbdabf10d956e0f13bfbc9414d3db40f0c535.zip
BOOL -> bool; additional fixes in constructors/destructors
Diffstat (limited to 'src/ui/mainshort.h')
-rw-r--r--src/ui/mainshort.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/mainshort.h b/src/ui/mainshort.h
index a4ff831..1b507d4 100644
--- a/src/ui/mainshort.h
+++ b/src/ui/mainshort.h
@@ -34,10 +34,10 @@ public:
CMainShort(CInstanceManager* iMan);
~CMainShort();
- void SetMode(BOOL bBuilding);
+ void SetMode(bool bBuilding);
void FlushShortcuts();
- BOOL CreateShortcuts();
- BOOL UpdateShortcuts();
+ bool CreateShortcuts();
+ bool UpdateShortcuts();
void SelectShortcut(EventMsg event);
void SelectNext();
CObject* DetectShort(FPOINT pos);
@@ -53,7 +53,7 @@ protected:
CRobotMain* m_main;
CObject* m_shortcuts[20];
- BOOL m_bBuilding;
+ bool m_bBuilding;
};