diff options
-rw-r--r-- | gui/KeysDialog.cpp | 6 |
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); |