Fixed 'todo' in reader in ASCII build

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@503 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-07-06 13:30:52 +00:00
parent 98d0b5dfdf
commit 64ad82bdd8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ String read_utf8_line(wxInputStream& input, bool eat_bom, bool until_eof) {
wxConvUTF8.MB2WC(result_buf, &buffer[0], size + 1);
result.UngetWriteBuf(size);
#else
// TODO!
result = String(&buffer[0], *wxConvCurrent);
#endif
return eat_bom ? decodeUTF8BOM(result) : result;
}