1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

Fix compiling

This commit is contained in:
nordsoft 2023-08-27 23:28:10 +04:00
parent 439254f921
commit 78397d6d1a

View File

@ -566,7 +566,7 @@ std::shared_ptr<CTextInput> InterfaceObjectConfigurable::buildTextInput(const Js
if(!config["callback"].isNull())
result->cb += callbacks_string.at(config["callback"].String());
if(!config["help"].isNull())
result->helpBox = readText(config["help"]);
result->setHelpText(readText(config["help"]));
return result;
}