]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/datstrm.cpp
Very bad wxPrintData destructor... fixed typo.
[wxWidgets.git] / src / common / datstrm.cpp
index 495885e418fc26a4ee846d6e9d0a7f1678203676..b9ad7564f98a8dd8d10a468d5674b47f1be2409c 100644 (file)
@@ -195,17 +195,8 @@ void wxDataOutputStream::WriteDouble(double d)
 #if wxUSE_APPLE_IEEE
   ConvertToIeeeExtended(d, (unsigned char *)buf);
 #else
-#  pragma warning "wxDataStream::WriteDouble() not using IeeeExtended - will not work!"
+#  pragma warning "wxDataOutputStream::WriteDouble() not using IeeeExtended - will not work!"
  buf[0] = '\0';
 #endif
   Write(buf, 10);
 }
-
-// ---------------------------------------------------------------------------
-// wxDataStream
-// ---------------------------------------------------------------------------
-
-wxDataStream::wxDataStream(wxStream& stream)
- : wxDataInputStream(stream), wxDataOutputStream(stream)
-{
-}