adapting to name change in r58318

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58375 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2009-01-25 10:33:50 +00:00
parent 64374d1b06
commit 04236b74cd
4 changed files with 4 additions and 4 deletions

View File

@@ -140,7 +140,7 @@ WXCOCOAIMPL_COMMON_IMPLEMENTATION
{
wxWindow* wxpeer = (wxWindow*) impl->GetWXPeer();
if ( wxpeer )
wxpeer->HandleClicked(0);
wxpeer->OSXHandleClicked(0);
}
}

View File

@@ -50,7 +50,7 @@ WXCOCOAIMPL_COMMON_INTERFACE
{
wxWindow* wxpeer = (wxWindow*) impl->GetWXPeer();
if ( wxpeer )
wxpeer->HandleClicked(0);
wxpeer->OSXHandleClicked(0);
}
}

View File

@@ -75,7 +75,7 @@ WXCOCOAIMPL_COMMON_INTERFACE
if ( viewimpl )
{
wxNotebook* wxpeer = (wxNotebook*) viewimpl->GetWXPeer();
wxpeer->HandleClicked(0);
wxpeer->OSXHandleClicked(0);
}
}

View File

@@ -65,7 +65,7 @@ WXCOCOAIMPL_COMMON_IMPLEMENTATION_NO_MOUSEDOWN
{
wxWindow* wxpeer = (wxWindow*) impl->GetWXPeer();
if ( wxpeer )
wxpeer->HandleClicked(0);
wxpeer->OSXHandleClicked(0);
}
}