aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2003-07-22 16:26:12 +0000
committerMax Horn2003-07-22 16:26:12 +0000
commit8c8f22f65ad195b0bf376d1182a4f8355cb28759 (patch)
tree4c0e04d221f88e48fd923dbb05406ed8a5c0fcec /gui
parent78cabd46bb97ad36213a168c4ac4294032e7e240 (diff)
downloadscummvm-rg350-8c8f22f65ad195b0bf376d1182a4f8355cb28759.tar.gz
scummvm-rg350-8c8f22f65ad195b0bf376d1182a4f8355cb28759.tar.bz2
scummvm-rg350-8c8f22f65ad195b0bf376d1182a4f8355cb28759.zip
whitespaces
svn-id: r9125
Diffstat (limited to 'gui')
-rw-r--r--gui/widget.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gui/widget.h b/gui/widget.h
index 5e085aed32..87421e6715 100644
--- a/gui/widget.h
+++ b/gui/widget.h
@@ -142,9 +142,9 @@ public:
StaticTextWidget(Dialog *boss, int x, int y, int w, int h, const String &text, int align);
void setValue(int value);
void setLabel(const String &label) { _label = label; }
- const String &getLabel() const { return _label; }
- void setAlign(int align) { _align = align; }
- int getAlign() const { return _align; }
+ const String &getLabel() const { return _label; }
+ void setAlign(int align) { _align = align; }
+ int getAlign() const { return _align; }
protected:
void drawWidget(bool hilite);
@@ -159,8 +159,8 @@ protected:
public:
ButtonWidget(Dialog *boss, int x, int y, int w, int h, const String &label, uint32 cmd = 0, uint8 hotkey = 0);
- void setCmd(uint32 cmd) { _cmd = cmd; }
- uint32 getCmd() const { return _cmd; }
+ void setCmd(uint32 cmd) { _cmd = cmd; }
+ uint32 getCmd() const { return _cmd; }
void handleMouseUp(int x, int y, int button, int clickCount);
void handleMouseEntered(int button) { setFlags(WIDGET_HILITED); draw(); }