mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
Fix coverity uninitialized variables
This commit is contained in:
parent
4fbbb67e98
commit
eceed558be
7 changed files with 24 additions and 9 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue