GUI: U32: Remove u32::format references

- Removed because implicit conversion can simply handle this usecase
This commit is contained in:
aryanrawlani28 2020-06-15 00:55:56 +05:30 committed by Eugene Sandulenko
parent 160a1320cc
commit b9a449480b
11 changed files with 37 additions and 37 deletions

View file

@ -1182,7 +1182,7 @@ void SavenameDialog::open() {
Dialog::open();
setResult(-1);
_title->setLabel(Common::U32String::format(Common::convertFromU32String(_("Enter a description for slot %d:")).c_str(), _targetSlot));
_title->setLabel(Common::String::format(Common::convertFromU32String(_("Enter a description for slot %d:")).c_str(), _targetSlot));
}
void SavenameDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) {