fixed wxCSConv to work again for iso-8859-1
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
9b4c231467
commit
2c74c55876
@ -3523,8 +3523,11 @@ size_t wxCSConv::ToWChar(wchar_t *dst, size_t dstLen,
|
||||
{
|
||||
CreateConvIfNeeded();
|
||||
|
||||
return m_convReal ? m_convReal->ToWChar(dst, dstLen, src, srcLen)
|
||||
: wxCONV_FAILED;
|
||||
if (m_convReal)
|
||||
return m_convReal->ToWChar(dst, dstLen, src, srcLen);
|
||||
|
||||
// latin-1 (direct)
|
||||
return wxMBConv::ToWChar(dst, dstLen, src, srcLen);
|
||||
}
|
||||
|
||||
size_t wxCSConv::FromWChar(char *dst, size_t dstLen,
|
||||
@ -3532,8 +3535,11 @@ size_t wxCSConv::FromWChar(char *dst, size_t dstLen,
|
||||
{
|
||||
CreateConvIfNeeded();
|
||||
|
||||
return m_convReal ? m_convReal->FromWChar(dst, dstLen, src, srcLen)
|
||||
: wxCONV_FAILED;
|
||||
if (m_convReal)
|
||||
return m_convReal->FromWChar(dst, dstLen, src, srcLen);
|
||||
|
||||
// latin-1 (direct)
|
||||
return wxMBConv::FromWChar(dst, dstLen, src, srcLen);
|
||||
}
|
||||
|
||||
size_t wxCSConv::MB2WC(wchar_t *buf, const char *psz, size_t n) const
|
||||
|
Loading…
Reference in New Issue
Block a user