have only one string form of operator<< in output streams

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46613 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-06-22 11:12:21 +00:00
parent 50e2789913
commit d3e9a6f3bf
4 changed files with 0 additions and 15 deletions

View File

@@ -650,13 +650,6 @@ void wxDataOutputStream::WriteDouble(const double *buffer, size_t size)
}
}
wxDataOutputStream& wxDataOutputStream::operator<<(const wxChar *string)
{
Write32(wxStrlen(string));
m_output->Write((const char *)string, wxStrlen(string)*sizeof(wxChar));
return *this;
}
wxDataOutputStream& wxDataOutputStream::operator<<(const wxString& string)
{
WriteString(string);