Fixed VC6-specific compile errors

This commit is contained in:
Chris Danford
2003-01-07 08:16:55 +00:00
parent a1f7624847
commit 471fc08e51
6 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -915,9 +915,9 @@ lstring CStringToLstring(const CString &str)
{
longchar c = utf8_get_char (ptr);
if(c == -1)
ret.push_back(INVALID_CHAR);
ret += INVALID_CHAR;
else
ret.push_back(c);
ret += c;
ptr = utf8_find_next_char (ptr, end);
}