diff options
author | Torbjörn Andersson | 2006-05-31 12:27:05 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-05-31 12:27:05 +0000 |
commit | 09074b1685e4d2f7555c24b7b011eb3ea13c562b (patch) | |
tree | 3589bc14cb16258cf65f7c9f96d58c3a1ad97f6a /gui/dialog.h | |
parent | 8975ba896378dfce8418453f7b6121b54d24d11e (diff) | |
download | scummvm-rg350-09074b1685e4d2f7555c24b7b011eb3ea13c562b.tar.gz scummvm-rg350-09074b1685e4d2f7555c24b7b011eb3ea13c562b.tar.bz2 scummvm-rg350-09074b1685e4d2f7555c24b7b011eb3ea13c562b.zip |
More cleanup. We shouldn't need these widget size parameters either.
svn-id: r22799
Diffstat (limited to 'gui/dialog.h')
-rw-r--r-- | gui/dialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/dialog.h b/gui/dialog.h index a2471ea59a..f14bc06015 100644 --- a/gui/dialog.h +++ b/gui/dialog.h @@ -84,7 +84,7 @@ protected: Widget *findWidget(const char *name); void deleteWidget(Widget *widget); - ButtonWidget *addButton(GuiObject *boss, int x, int y, const Common::String &label, uint32 cmd, char hotkey, WidgetSize ws = kDefaultWidgetSize); + ButtonWidget *addButton(GuiObject *boss, int x, int y, const Common::String &label, uint32 cmd, char hotkey); void setResult(int result) { _result = result; } int getResult() const { return _result; } |