| 130 | } |
| 131 | |
| 132 | void XMLWriter::WriteAttr(const wxString &name, const wxString &value) |
| 133 | // may throw from Write() |
| 134 | { |
| 135 | Write(wxString::Format(wxT(" %s=\"%s\""), |
| 136 | name, |
| 137 | XMLEsc(value))); |
| 138 | } |
| 139 | |
| 140 | void XMLWriter::WriteAttr(const wxString &name, const wxChar *value) |
| 141 | // may throw from Write() |
no test coverage detected