处理转义字符。

This commit is contained in:
2026-01-09 09:47:12 +08:00
parent ec0f6989d1
commit 3215fb34d8
3 changed files with 6 additions and 3 deletions

View File

@@ -419,6 +419,10 @@ bool CXmlOpr::save()
if (ret != tinyxml2::XML_SUCCESS) {
return false;
}
std::vector<std::string> vec;
if (!handle_transfer(xml_path_, vec)) {
return false;
}
return true;
}