Fixes to allow compilation with no wchar_t (djgpp probably has a real wchar_t
now, I will check, but compilation should work without anyway). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33834 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -83,8 +83,12 @@ private:
|
||||
// position in the stream in bytes, *not* in chars
|
||||
size_t m_pos;
|
||||
|
||||
#if wxUSE_WCHAR_T
|
||||
// string encoding converter (UTF8 is the standard)
|
||||
wxMBConvUTF8 m_conv;
|
||||
#else
|
||||
wxMBConv m_conv;
|
||||
#endif
|
||||
|
||||
DECLARE_NO_COPY_CLASS(wxStringOutputStream)
|
||||
};
|
||||
|
Reference in New Issue
Block a user