fix null-deref

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38428 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Surovell
2006-03-28 19:55:24 +00:00
parent 70b5f65e55
commit 30c23e741e

View File

@@ -448,7 +448,7 @@ pascal OSStatus wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler , Ev
Point screenMouseLocation = cEvent.GetParameter<Point>(kEventParamMouseLocation) ; Point screenMouseLocation = cEvent.GetParameter<Point>(kEventParamMouseLocation) ;
Point windowMouseLocation = screenMouseLocation ; Point windowMouseLocation = screenMouseLocation ;
WindowRef window ; WindowRef window = NULL;
short windowPart = ::FindWindow(screenMouseLocation, &window); short windowPart = ::FindWindow(screenMouseLocation, &window);
wxWindow* currentMouseWindow = NULL ; wxWindow* currentMouseWindow = NULL ;
@@ -1433,8 +1433,8 @@ void wxTopLevelWindowMac::SetExtraStyle(long exStyle)
#endif #endif
} }
// TODO: switch to structure bounds -
// we are still using coordinates of the content view // we are still using coordinates of the content view
// TODO: switch to structure bounds
// //
void wxTopLevelWindowMac::MacGetContentAreaInset( int &left , int &top , int &right , int &bottom ) void wxTopLevelWindowMac::MacGetContentAreaInset( int &left , int &top , int &right , int &bottom )
{ {