Removed unnecessary newlines.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2012-02-20 18:02:04 +00:00
parent 6460c5990b
commit 7e2cf46425

View File

@@ -1283,14 +1283,14 @@ bool wxRichTextXMLHandler::WriteProperties(wxOutputStream& stream, const wxRichT
OutputString(stream, wxT("<property name=\"") + name +
wxT("\" type=\"") + var.GetType() + wxT("\" value=\""));
OutputStringEnt(stream, value);
OutputString(stream, wxT("\"/>\n"));
OutputString(stream, wxT("\"/>"));
}
}
level --;
OutputIndentation(stream, level);
OutputString(stream, wxT("</properties>\n"));
OutputString(stream, wxT("</properties>"));
level --;
}