aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2010-06-15 20:01:31 +0000
committerMax Horn2010-06-15 20:01:31 +0000
commit38fc910353009fe14124e1041d34d0df654d3f88 (patch)
tree34875dfd9b10ac85af9ed32410ea427a838cd2c4
parent3f9bb1e9b08511f89bd53ff3e456ef4335a2ba71 (diff)
downloadscummvm-rg350-38fc910353009fe14124e1041d34d0df654d3f88.tar.gz
scummvm-rg350-38fc910353009fe14124e1041d34d0df654d3f88.tar.bz2
scummvm-rg350-38fc910353009fe14124e1041d34d0df654d3f88.zip
Yet another WinCE fix
svn-id: r49889
-rw-r--r--gui/KeysDialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/KeysDialog.cpp b/gui/KeysDialog.cpp
index 4162935e45..897dd8c741 100644
--- a/gui/KeysDialog.cpp
+++ b/gui/KeysDialog.cpp
@@ -41,9 +41,9 @@ enum {
KeysDialog::KeysDialog(const Common::String &title)
: GUI::Dialog("KeysDialog") {
- new ButtonWidget(this, "KeysDialog.Map", _("Map"), kMapCmd);
- new ButtonWidget(this, "KeysDialog.Ok", _("OK"), kOKCmd);
- new ButtonWidget(this, "KeysDialog.Cancel", _("Cancel"), kCloseCmd);
+ new ButtonWidget(this, "KeysDialog.Map", _("Map"), 0, kMapCmd);
+ new ButtonWidget(this, "KeysDialog.Ok", _("OK"), 0, kOKCmd);
+ new ButtonWidget(this, "KeysDialog.Cancel", _("Cancel"), 0, kCloseCmd);
_actionsList = new ListWidget(this, "KeysDialog.List");
_actionsList->setNumberingMode(kListNumberingZero);