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
@@ -3,16 +3,16 @@
#include "NoteTypes.h"
#include "GameManager.h"
bool NotesLoader::Loadable( CString sPath )
bool NotesLoader::Loadable( RString sPath )
{
vector<CString> list;
vector<RString> list;
GetApplicableFiles( sPath, list );
return !list.empty();
}
void NotesLoader::GetMainAndSubTitlesFromFullTitle( const CString sFullTitle, CString &sMainTitleOut, CString &sSubTitleOut )
void NotesLoader::GetMainAndSubTitlesFromFullTitle( const RString sFullTitle, RString &sMainTitleOut, RString &sSubTitleOut )
{
const CString sLeftSeps[] = { " -", " ~", " (", " [", "\t" };
const RString sLeftSeps[] = { " -", " ~", " (", " [", "\t" };
for( unsigned i=0; i<ARRAYSIZE(sLeftSeps); i++ )
{