aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/CEgui/GUIElement.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /backends/wince/CEgui/GUIElement.h
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'backends/wince/CEgui/GUIElement.h')
-rw-r--r--backends/wince/CEgui/GUIElement.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/backends/wince/CEgui/GUIElement.h b/backends/wince/CEgui/GUIElement.h
index 86ba3c4fcd..cbd955cef2 100644
--- a/backends/wince/CEgui/GUIElement.h
+++ b/backends/wince/CEgui/GUIElement.h
@@ -33,29 +33,29 @@
namespace CEGUI {
class GUIElement {
- public:
- bool setBackground(WORD backgroundReference);
+ public:
+ bool setBackground(WORD backgroundReference);
void setVisible(bool visibility);
virtual void forceRedraw();
- virtual bool draw(SDL_Surface *surface);
+ virtual bool draw(SDL_Surface *surface);
virtual ~GUIElement();
void move(int x, int y);
int width();
int height();
int x();
int y();
- virtual bool action(int x, int y, bool pushed) = 0;
+ virtual bool action(int x, int y, bool pushed) = 0;
bool visible();
bool drawn();
protected:
GUIElement(int x = 0, int y = 0, int width = 0, int height = 0);
bool checkInside(int x, int y);
bool _visible;
- SDL_ImageResource *_background;
+ SDL_ImageResource *_background;
int _x;
int _y;
bool _drawn;
- private:
+ private:
int _width;
int _height;
};