Minor fixes.

--HG--
branch : dev
This commit is contained in:
Martín Lucas Golini
2019-06-27 01:27:38 -03:00
parent 53681be832
commit ecc401fb5b
3 changed files with 5 additions and 2 deletions

View File

@@ -30,7 +30,8 @@ const std::vector<std::string>& NodeAttribute::Info::getNames() const {
return names;
}
NodeAttribute::NodeAttribute()
NodeAttribute::NodeAttribute() :
mVolatile( false )
{}
NodeAttribute::NodeAttribute( std::string name, std::string value, bool isVolatile ) :

View File

@@ -20,7 +20,8 @@ UIMenu::UIMenu() :
mItemSelected( NULL ),
mItemSelectedIndex( eeINDEX_NOT_FOUND ),
mClickHide( false ),
mLastTickMove( 0 )
mLastTickMove( 0 ),
mOwnerNode( NULL )
{
mFlags |= UI_AUTO_SIZE;

View File

@@ -13,6 +13,7 @@ UIStyle * UIStyle::New( UIWidget * widget ) {
}
UIStyle::UIStyle( UIWidget * widget ) :
UIState(),
mWidget( widget ),
mChangingState( false )
{