fix uninitialized variable
This commit is contained in:
@@ -10,7 +10,8 @@
|
|||||||
static SubscriptionManager<IPreference> m_Subscribers;
|
static SubscriptionManager<IPreference> m_Subscribers;
|
||||||
|
|
||||||
IPreference::IPreference( const RString& sName ):
|
IPreference::IPreference( const RString& sName ):
|
||||||
m_sName( sName )
|
m_sName( sName ),
|
||||||
|
m_bLoadedFromStatic( false )
|
||||||
{
|
{
|
||||||
m_Subscribers.Subscribe( this );
|
m_Subscribers.Subscribe( this );
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user