Tired of fighting with MFC; switch arrays to vector.

Update IniFile and some of RageUitl.  Can't do everything, since it's
still using MFC CString.
This commit is contained in:
Glenn Maynard
2003-07-23 00:47:23 +00:00
parent 212af912f1
commit 33a835ff31
12 changed files with 372 additions and 396 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ BOOL CSmpackageApp::InitInstance()
// check if there's a .smzip command line argument
CStringArray arrayCommandLineBits;
split( ::GetCommandLine(), "\"", arrayCommandLineBits );
for( int i=0; i<arrayCommandLineBits.GetSize(); i++ )
for( unsigned i=0; i<arrayCommandLineBits.size(); i++ )
{
CString sPath = arrayCommandLineBits[i];
sPath.TrimLeft();