Rest of s/GetString/c_str/.

(watch out for PlayerOptions::GetString and SongOptions::GetString)
This commit is contained in:
Glenn Maynard
2003-04-25 00:27:30 +00:00
parent fe33dec385
commit 09967df461
18 changed files with 34 additions and 34 deletions
+2 -2
View File
@@ -102,10 +102,10 @@ void IniFile::WriteFile()
if (k->second.empty())
continue;
fprintf( fp, "[%s]\n", k->first.GetString() );
fprintf( fp, "[%s]\n", k->first.c_str() );
for (key::const_iterator i = k->second.begin(); i != k->second.end(); ++i)
fprintf( fp, "%s=%s\n", i->first.GetString(), i->second.GetString() );
fprintf( fp, "%s=%s\n", i->first.c_str(), i->second.c_str() );
fprintf( fp, "\n" );
}