blind compilation fix for CW 8.3 in Unicode build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
138861bcdd
commit
d1dbe757c0
1 changed files with 2 additions and 1 deletions
|
|
@ -276,7 +276,8 @@ static wxMBConvUTF16 sUTF16Converter ;
|
|||
|
||||
static inline wxMBConv& GetConv(const wxDataFormat& format)
|
||||
{
|
||||
return format == wxDF_UNICODETEXT ? sUTF16Converter : (wxMBConv&) wxConvLocal;
|
||||
return format == wxDF_UNICODETEXT ? (wxMBConv&) sUTF16Converter
|
||||
: (wxMBConv&) wxConvLocal;
|
||||
}
|
||||
|
||||
size_t wxTextDataObject::GetDataSize(const wxDataFormat& format) const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue