fix uninitialized variable

This commit is contained in:
Chris Danford
2006-05-03 21:31:45 +00:00
parent 8ac6cd5b8e
commit 9ae67e655c
+2 -1
View File
@@ -10,7 +10,8 @@
static SubscriptionManager<IPreference> m_Subscribers;
IPreference::IPreference( const RString& sName ):
m_sName( sName )
m_sName( sName ),
m_bLoadedFromStatic( false )
{
m_Subscribers.Subscribe( this );
}