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
+1 -1
View File
@@ -115,7 +115,7 @@ static bool AreEntriesFull()
if( pCourse->m_vEntries.size() >= size_t(MAX_ENTRIES_PER_COURSE) )
{
CString sError = ssprintf(MAXIMUM_COURSE_ENTRIES.GetValue(), MAX_ENTRIES_PER_COURSE, pCourse->m_vEntries.size() );
RString sError = ssprintf(MAXIMUM_COURSE_ENTRIES.GetValue(), MAX_ENTRIES_PER_COURSE, pCourse->m_vEntries.size() );
ScreenPrompt::Prompt( SM_None, sError );
return true;
}