corrected typos

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2002-09-21 16:21:15 +00:00
parent 64e8d107f0
commit c175803628
2 changed files with 8 additions and 8 deletions

View File

@@ -1632,16 +1632,16 @@ void wxApp::MacHandleMouseDownEvent( WXEVENTREF evr )
Rect constraintRect ;
constraintRect.top = win->GetMinHeight() ;
if ( constraintRect.top == -1 )
constraintRect.top == 0 ;
constraintRect.top = 0 ;
constraintRect.left = win->GetMinWidth() ;
if ( constraintRect.left == -1 )
constraintRect.left == 0 ;
constraintRect.left = 0 ;
constraintRect.right = win->GetMaxWidth() ;
if ( constraintRect.right == -1 )
constraintRect.right == 32768 ;
constraintRect.right = 32768 ;
constraintRect.bottom = win->GetMaxWidth() ;
if ( constraintRect.bottom == -1 )
constraintRect.bottom == 32768 ;
constraintRect.bottom = 32768 ;
Boolean growResult = ResizeWindow( window , ev->where ,
&constraintRect , &newContentRect ) ;

View File

@@ -1632,16 +1632,16 @@ void wxApp::MacHandleMouseDownEvent( WXEVENTREF evr )
Rect constraintRect ;
constraintRect.top = win->GetMinHeight() ;
if ( constraintRect.top == -1 )
constraintRect.top == 0 ;
constraintRect.top = 0 ;
constraintRect.left = win->GetMinWidth() ;
if ( constraintRect.left == -1 )
constraintRect.left == 0 ;
constraintRect.left = 0 ;
constraintRect.right = win->GetMaxWidth() ;
if ( constraintRect.right == -1 )
constraintRect.right == 32768 ;
constraintRect.right = 32768 ;
constraintRect.bottom = win->GetMaxWidth() ;
if ( constraintRect.bottom == -1 )
constraintRect.bottom == 32768 ;
constraintRect.bottom = 32768 ;
Boolean growResult = ResizeWindow( window , ev->where ,
&constraintRect , &newContentRect ) ;