Fix warning about signed/unsigned mismatch in the accessibility sample
Just to suppress harmless compiler warning.
This commit is contained in:
@@ -404,7 +404,7 @@ void MyFrame::OnQuery(wxCommandEvent& WXUNUSED(event))
|
|||||||
{
|
{
|
||||||
m_textCtrl->Clear();
|
m_textCtrl->Clear();
|
||||||
IAccessible* accessibleFrame = NULL;
|
IAccessible* accessibleFrame = NULL;
|
||||||
if (S_OK != AccessibleObjectFromWindow((HWND) GetHWND(), OBJID_CLIENT,
|
if (S_OK != AccessibleObjectFromWindow((HWND) GetHWND(), (DWORD)OBJID_CLIENT,
|
||||||
IID_IAccessible, (void**) & accessibleFrame))
|
IID_IAccessible, (void**) & accessibleFrame))
|
||||||
{
|
{
|
||||||
Log(wxT("Could not get object."));
|
Log(wxT("Could not get object."));
|
||||||
|
Reference in New Issue
Block a user