Subversion Repositories spk

Rev

Rev 202 | Rev 264 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 202 Rev 211
Line 801... Line 801...
801
 
801
 
802
	if ( File.startWrite() ) {
802
	if ( File.startWrite() ) {
803
		if ( m_pMap ) {
803
		if ( m_pMap ) {
804
			for(FileListItr itr = m_pMap->begin(); itr != m_pMap->end(); itr++) {
804
			for(FileListItr itr = m_pMap->begin(); itr != m_pMap->end(); itr++) {
805
				Utils::WString line = itr->first + L" => " + itr->second + L"\r\n";
805
				Utils::WString line = itr->first + L" => " + itr->second + L"\r\n";
-
 
806
#pragma warning(disable:4244)
806
				std::string str = std::string(line.begin(), line.end());
807
				std::string str = std::string(line.begin(), line.end());
-
 
808
#pragma warning(default:4244)
807
				File.write(str.c_str(), str.length());
809
				File.write(str.c_str(), str.length());
808
			}
810
			}
809
		}
811
		}
810
 
812
 
811
		File.close();
813
		File.close();