X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6d44bf31a6f0b4a261280e57842bbd53b5e26cd5..d93f63db9d836a7d303343e60fb034dc9a1360d0:/src/common/datstrm.cpp?ds=inline diff --git a/src/common/datstrm.cpp b/src/common/datstrm.cpp index a4cecc093b..93850acd65 100644 --- a/src/common/datstrm.cpp +++ b/src/common/datstrm.cpp @@ -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);