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
@@ -43,9 +43,9 @@ static HBITMAP LoadWin32Surface( RageSurface *&s )
return bitmap;
}
static HBITMAP LoadWin32Surface( CString sFile, HWND hWnd )
static HBITMAP LoadWin32Surface( RString sFile, HWND hWnd )
{
CString error;
RString error;
RageSurface *pSurface = RageSurfaceUtils::LoadFile( sFile, error );
if( pSurface == NULL )
return NULL;
@@ -135,9 +135,9 @@ void LoadingWindow_Win32::Paint()
}
}
void LoadingWindow_Win32::SetText( CString sText )
void LoadingWindow_Win32::SetText( RString sText )
{
vector<CString> asMessageLines;
vector<RString> asMessageLines;
split( sText, "\n", asMessageLines, false );
while( asMessageLines.size() < 3 )
asMessageLines.push_back( "" );