]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datstrm.h
ignore this...
[wxWidgets.git] / include / wx / datstrm.h
index ee557221a2e5e7ebe8650c082de22357b92cead8..7b0fa1a613ab076ec83d3d0ed44e0ed747d1911a 100644 (file)
@@ -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;