CString -> RString

This commit is contained in:
Chris Danford
2006-01-22 01:00:06 +00:00
parent 870ed267fc
commit 7f821e8cfc
578 changed files with 3943 additions and 3946 deletions
+4 -4
View File
@@ -15,9 +15,9 @@ static const float LineHeight = 50;
#define FONT( i ) THEME->GetMetric (m_sName,ssprintf("Font%i",i))
#define TEXT( i ) THEME->GetMetric (m_sName,ssprintf("Text%i",i))
static CString g_sCustomText;
static RString g_sCustomText;
static void ChangeText( const CString &sText )
static void ChangeText( const RString &sText )
{
g_sCustomText = sText;
}
@@ -57,7 +57,7 @@ void ScreenTestFonts::Init()
SetText( "Foo" );
}
void ScreenTestFonts::SetText( CString sText )
void ScreenTestFonts::SetText( RString sText )
{
txt.SetShadowLength( 0 );
txt.SetText( "" ); /* force it */
@@ -65,7 +65,7 @@ void ScreenTestFonts::SetText( CString sText )
m_sCurText = sText;
}
void ScreenTestFonts::SetFont( CString sFont )
void ScreenTestFonts::SetFont( RString sFont )
{
m_sFont = sFont;