]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/datstrm.cpp
VZ: I removed (CASTWNDPROC) from ::CallWndProc - it doesn't compile here with it
[wxWidgets.git] / src / common / datstrm.cpp
index a4cecc093b27b4651bf368023cfd8ef405f9cc00..93850acd65e90aa9615f1d6caca4c17c08a8aee0 100644 (file)
@@ -25,7 +25,6 @@
 #endif
 
 #include "wx/datstrm.h"
-#include "wx/bufstrm.h"
 
 wxDataInputStream::wxDataInputStream(wxInputStream& s)
   : wxFilterInputStream(s)
@@ -124,7 +123,7 @@ wxString wxDataInputStream::ReadString()
   wx_string = string;
   delete string;
 
-  return wx_string; 
+  return wx_string;
 }
 
 wxDataOutputStream::wxDataOutputStream(wxOutputStream& s)
@@ -188,7 +187,7 @@ void wxDataOutputStream::WriteDouble(double d)
 #if USE_APPLE_IEEE
   ConvertToIeeeExtended(d, (unsigned char *)buf);
 #else
-#      pragma warning "wxDataStream::WriteDouble() not using IeeeExtended - will not work!"
+#  pragma warning "wxDataStream::WriteDouble() not using IeeeExtended - will not work!"
  buf[0] = '\0';
 #endif
   Write(buf, 10);