This commit is contained in:
Glenn Maynard
2006-09-20 22:09:44 +00:00
parent 45a159bd00
commit 9b94f66bc0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ void OptionRowType::Load( const RString &sType )
if( SHOW_UNDERLINES ) if( SHOW_UNDERLINES )
m_UnderlineParent.Load( sType, OptionsCursor::underline ); m_UnderlineParent.Load( sType, OptionsCursor::underline );
m_textTitle.LoadFromFont( THEME->GetPathF(sType,"title") ); m_textTitle.LoadFromFont( THEME->GetPathF(sType,"title") );
m_sprBullet = ActorUtil::MakeActor( THEME->GetPathG(sType,"bullet") ); m_sprBullet.Load( ActorUtil::MakeActor( THEME->GetPathG(sType,"bullet") ) );
if( SHOW_OPTION_ICONS ) if( SHOW_OPTION_ICONS )
m_OptionIcon.Load( sType ); m_OptionIcon.Load( sType );
} }
+1 -1
View File
@@ -24,7 +24,7 @@ private:
BitmapText m_textItemParent; BitmapText m_textItemParent;
OptionsCursor m_UnderlineParent; OptionsCursor m_UnderlineParent;
Actor *m_sprBullet; AutoActor m_sprBullet;
BitmapText m_textTitle; BitmapText m_textTitle;
OptionIcon m_OptionIcon; OptionIcon m_OptionIcon;