]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datstrm.h
corrected wxGauge to inherit from wxGaugeBase
[wxWidgets.git] / include / wx / datstrm.h
index 1f692499cc79937848ed88d5f708f0ce239cb943..74e5375e31234c22c18ac385852777dab7835eb2 100644 (file)
@@ -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;