X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5a96d2f45fec76a2d0da1c0c7672b62c19280f43..0158f58424124c608703e1325f623a3473f3baa6:/include/wx/datstrm.h diff --git a/include/wx/datstrm.h b/include/wx/datstrm.h index ee557221a2..6ba074de71 100644 --- a/include/wx/datstrm.h +++ b/include/wx/datstrm.h @@ -16,7 +16,7 @@ #pragma interface "datstrm.h" #endif -#include +#include "wx/stream.h" #if wxUSE_STREAMS @@ -41,7 +41,7 @@ public: wxDataInputStream& operator>>(double& i); wxDataInputStream& operator>>(float& f); - void BidEndianOrdered(bool be_order) { m_be_order = be_order; } + void BigEndianOrdered(bool be_order) { m_be_order = be_order; } protected: wxInputStream *m_input; bool m_be_order; @@ -69,7 +69,7 @@ class WXDLLEXPORT wxDataOutputStream { wxDataOutputStream& operator<<(double f); wxDataOutputStream& operator<<(float f); - void BidEndianOrdered(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;