aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/CEgui/Panel.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/Panel.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/Panel.h')
-rw-r--r--backends/wince/CEgui/Panel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/wince/CEgui/Panel.h b/backends/wince/CEgui/Panel.h
index 4abe5a0685..cf8195d95c 100644
--- a/backends/wince/CEgui/Panel.h
+++ b/backends/wince/CEgui/Panel.h
@@ -39,15 +39,15 @@ namespace CEGUI {
class Panel : public Toolbar {
public:
Panel(int interleave_first, int interleave);
- virtual bool draw(SDL_Surface *surface);
+ virtual bool draw(SDL_Surface *surface);
virtual ~Panel();
bool add(const String &name, const PanelItem *item);
void clear();
virtual void forceRedraw();
- virtual bool action(int x, int y, bool pushed);
+ virtual bool action(int x, int y, bool pushed);
private:
struct IgnoreCaseComparator {
- int operator()(const String& x, const String& y) const {
+ int operator()(const String& x, const String& y) const {
return scumm_stricmp(x.c_str(), y.c_str()); }
};