compilation fix for wxUSE_UNICODE_MSLU && !WXWIN_COMPATIBILITY_2_6 (bug 1587408)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42749 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-10-30 19:11:31 +00:00
parent cecf69f30d
commit dddf9e14ed

View File

@@ -1057,7 +1057,7 @@ size_t wxFileDataObject::GetDataSize() const
#if wxUSE_UNICODE_MSLU
size_t sizeOfChar;
if ( wxGetOsVersion() == wxWIN95 )
if ( wxGetOsVersion() == wxOS_WINDOWS_9X )
{
// Win9x always uses ANSI file names and MSLU doesn't help with this
sizeOfChar = sizeof(char);
@@ -1111,7 +1111,7 @@ bool wxFileDataObject::GetDataHere(void *WXUNUSED_IN_WINCE(pData)) const
pDrop->pFiles = sizeof(DROPFILES);
pDrop->fNC = FALSE; // not non-client coords
#if wxUSE_UNICODE_MSLU
pDrop->fWide = wxGetOsVersion() != wxWIN95 ? TRUE : FALSE;
pDrop->fWide = wxGetOsVersion() != wxOS_WINDOWS_9X ? TRUE : FALSE;
#else
pDrop->fWide = wxUSE_UNICODE;
#endif