Fix compilation error in accessibility sample

Since f3ddefc1ad wxSplitterWindow::SashHitTest() has only two parameters.
This commit is contained in:
Artur Wieczorek
2016-09-20 20:29:53 +02:00
parent 255b2adea2
commit 8197acfd4b

View File

@@ -637,7 +637,7 @@ wxAccStatus SplitterWindowAccessible::HitTest(const wxPoint& pt, int* childId, w
if (splitter->IsSplit())
{
wxPoint clientPt = splitter->ScreenToClient(pt);
if (splitter->SashHitTest(clientPt.x, clientPt.y, 1))
if (splitter->SashHitTest(clientPt.x, clientPt.y))
{
// We're over the sash
*childId = 2;