summaryrefslogtreecommitdiffstats
path: root/src/ui/check.h
diff options
context:
space:
mode:
authorerihel <erihel@gmail.com>2012-09-11 12:49:41 +0200
committererihel <erihel@gmail.com>2012-09-11 12:49:41 +0200
commit01cc0fbc49696a19a56dfdd8359d4bb77e868925 (patch)
tree81d0674e4b54e95dad5508948491a26d9d5522da /src/ui/check.h
parent5903e400d476c2cf62c146643a0693c4fc29d68a (diff)
downloadcolobot-01cc0fbc49696a19a56dfdd8359d4bb77e868925.tar.gz
colobot-01cc0fbc49696a19a56dfdd8359d4bb77e868925.tar.bz2
colobot-01cc0fbc49696a19a56dfdd8359d4bb77e868925.zip
* latest changes
* all files except studio, map and maindialog should compile * did some code cleanup
Diffstat (limited to 'src/ui/check.h')
-rw-r--r--src/ui/check.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/ui/check.h b/src/ui/check.h
index 0b6a1f2..1ad8a3a 100644
--- a/src/ui/check.h
+++ b/src/ui/check.h
@@ -19,30 +19,30 @@
#pragma once
+#include "control.h"
-#include "ui/control.h"
namespace Gfx{
-class CEngine;
+ class CEngine;
}
namespace Ui {
-class CCheck : public CControl
-{
-public:
- CCheck();
- virtual ~CCheck();
+ class CCheck : public CControl
+ {
+ public:
+ CCheck();
+ virtual ~CCheck();
- bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventType);
+ bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventType);
- bool EventProcess(const Event &event);
+ bool EventProcess(const Event &event);
- void Draw();
+ void Draw();
-protected:
+ protected:
-protected:
-};
+ protected:
+ };
}