Fix coverity uninitialized variables

This commit is contained in:
uramer 2021-11-19 16:21:17 +01:00
parent 4fbbb67e98
commit eceed558be
7 changed files with 24 additions and 9 deletions

View file

@ -3,10 +3,13 @@
namespace LuaUi
{
LuaText::LuaText()
: mAutoSized(true)
{}
void LuaText::initialize()
{
WidgetExtension::initialize();
mAutoSized = true;
}
bool LuaText::setPropertyRaw(std::string_view name, sol::object value)