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
+3 -3
View File
@@ -126,7 +126,7 @@ works only if there are 5 banners in the scrolling list.
void MusicBannerWheel::InsertNewBanner(int direction)
{
Song* pSong = NULL;
CString sGraphicPath;
RString sGraphicPath;
int elementtoreplace=0;
if( direction == GOINGLEFT)
@@ -215,7 +215,7 @@ and once only.
void MusicBannerWheel::LoadSongData()
{
Song* pSong = NULL;
vector<CString> asGraphicPaths;
vector<RString> asGraphicPaths;
if(MAXSONGSINBUFFER >= arraySongs.size() && SingleLoad != 1) // less than the MAXSONGSINBUFFER means we can get away with loading the lot in one go
{
@@ -308,7 +308,7 @@ void MusicBannerWheel::ScanToNextGroup()
int startingPos = localPos;
Song* pSong;
pSong = arraySongs[currentPos];
CString currentGroupName = pSong->m_sGroupName;
RString currentGroupName = pSong->m_sGroupName;
localPos++;
while(localPos != startingPos)
{