]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/datstrm.cpp
added the mention of library in which each class is defined to the documentation...
[wxWidgets.git] / src / common / datstrm.cpp
index 50e4eb4b2e6dc2b81e1d0d76c54523258481e726..99e9051c037bbba324a3eb4a12dbfde4a775f844 100644 (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);