X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4c075b7090b8875b3810f5a8efcde1ecd4f35216..012409e9ef464462a096344d61119d783b77865d:/include/wx/datstrm.h diff --git a/include/wx/datstrm.h b/include/wx/datstrm.h index 1f692499cc..74e5375e31 100644 --- a/include/wx/datstrm.h +++ b/include/wx/datstrm.h @@ -43,7 +43,7 @@ public: wxDataInputStream& operator>>(float& f); void BigEndianOrdered(bool be_order) { m_be_order = be_order; } - + protected: wxInputStream *m_input; bool m_be_order; @@ -62,7 +62,7 @@ public: void WriteString(const wxString& string); wxDataOutputStream& operator<<(const wxChar *string); - wxDataOutputStream& operator<<(wxString& string); + wxDataOutputStream& operator<<(const wxString& string); wxDataOutputStream& operator<<(wxInt8 c); wxDataOutputStream& operator<<(wxInt16 i); wxDataOutputStream& operator<<(wxInt32 i); @@ -72,8 +72,8 @@ public: wxDataOutputStream& operator<<(double f); wxDataOutputStream& operator<<(float f); - void BigEndianOrdered(bool be_order) { m_be_order = be_order; } - + void BigEndianOrdered(bool be_order) { m_be_order = be_order; } + protected: wxOutputStream *m_output; bool m_be_order;