X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/830f8f11bca5c0892ae767ba14790c8b5b59011f..6bd719f16c64ac2757a40782b709d30e810d2eff:/include/wx/datstrm.h diff --git a/include/wx/datstrm.h b/include/wx/datstrm.h index 80fa7e285e..2fb430cbf8 100644 --- a/include/wx/datstrm.h +++ b/include/wx/datstrm.h @@ -26,7 +26,7 @@ public: #else wxDataInputStream(wxInputStream& s); #endif - ~wxDataInputStream(){} + ~wxDataInputStream(); bool IsOk() { return m_input->IsOk(); } @@ -83,7 +83,7 @@ protected: wxInputStream *m_input; bool m_be_order; #if wxUSE_UNICODE - wxMBConv m_conv; + wxMBConv *m_conv; #endif DECLARE_NO_COPY_CLASS(wxDataInputStream) @@ -97,7 +97,7 @@ public: #else wxDataOutputStream(wxOutputStream& s); #endif - ~wxDataOutputStream(){} + ~wxDataOutputStream(); bool IsOk() { return m_output->IsOk(); } @@ -157,7 +157,7 @@ protected: wxOutputStream *m_output; bool m_be_order; #if wxUSE_UNICODE - wxMBConv m_conv; + wxMBConv *m_conv; #endif DECLARE_NO_COPY_CLASS(wxDataOutputStream)