1
0

Fix SAVE encoding

This commit is contained in:
otya128
2016-12-27 15:55:39 +09:00
parent 618a145c9c
commit e13209bde9

View File

@@ -193,7 +193,7 @@ r"ファイルを書き込みます。
if (!isValidFilename(file.name))
throw new IllegalFunctionCall("SAVE");
auto path = buildPath(projectPath, project, "TXT"w, file.name).to!string;
write(path, content);
write(path, content.to!string/*UTF8*/);
result = DialogResult.SUCCESS;
}