X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5a96d2f45fec76a2d0da1c0c7672b62c19280f43..a2d93e735a9f126b855a9353ca8ddeacaaf52817:/include/wx/datstrm.h?ds=sidebyside

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 <wx/stream.h>
+#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;