void wxGetMousePosition( int* x, int* y )
{
wxPoint pt = wxFromNSPoint(NULL, [NSEvent mouseLocation]);
+ if ( x )
+ *x = pt.x;
+ if ( y )
+ *y = pt.y;
};
wxTimerImpl* wxGUIAppTraits::CreateTimerImpl(wxTimer *timer)
#endif // wxUSE_GUI
-
-
#endif // wxOSX_USE_COCOA
\ No newline at end of file