Don't use LCID and WXLCID interchangeably in wxMSW code.

Similarly to the problem with WXDWORD and DWORD, LCID is actually an unsigned
int and not unsigned long in 64 bit Cygwin builds, so it's a different type.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@76514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-05-12 13:16:05 +00:00
parent 1902f64b6b
commit 3ebc8f4363

View File

@@ -600,12 +600,12 @@ bool wxAutomationObject::CreateInstance(const wxString& progId) const
return m_dispatchPtr != NULL;
}
LCID wxAutomationObject::GetLCID() const
WXLCID wxAutomationObject::GetLCID() const
{
return m_lcid;
}
void wxAutomationObject::SetLCID(LCID lcid)
void wxAutomationObject::SetLCID(WXLCID lcid)
{
m_lcid = lcid;
}