[Scummvm-git-logs] scummvm master -> 404de652a9cbe8ccedbc838f5192df1b189b4118
bluegr
bluegr at gmail.com
Thu Dec 31 15:50:03 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
404de652a9 ENGINES: fix wrong parameter in constructor.
Commit: 404de652a9cbe8ccedbc838f5192df1b189b4118
https://github.com/scummvm/scummvm/commit/404de652a9cbe8ccedbc838f5192df1b189b4118
Author: Fiodar Stryzhniou (fedor_qd at mail.ru)
Date: 2020-12-31T17:49:58+02:00
Commit Message:
ENGINES: fix wrong parameter in constructor.
Cause compilation error.
Changed paths:
engines/dialogs.cpp
diff --git a/engines/dialogs.cpp b/engines/dialogs.cpp
index 5ca972397d..3a233ca90c 100644
--- a/engines/dialogs.cpp
+++ b/engines/dialogs.cpp
@@ -360,7 +360,7 @@ ConfigDialog::ConfigDialog() :
new GUI::ButtonWidget(this, "GlobalConfig.Cancel", _("~C~ancel"), Common::U32String(), GUI::kCloseCmd);
#ifdef GUI_ENABLE_KEYSDIALOG
- new GUI::ButtonWidget(this, "GlobalConfig.Keys", _("~K~eys"), 0, kKeysCmd);
+ new GUI::ButtonWidget(this, "GlobalConfig.Keys", _("~K~eys"), Common::U32String(), kKeysCmd);
_keysDialog = NULL;
#endif
}
More information about the Scummvm-git-logs
mailing list