From c1758036282daabbf9c58a5d9326521c7e05e938 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sat, 21 Sep 2002 16:21:15 +0000 Subject: [PATCH] corrected typos git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/app.cpp | 8 ++++---- src/mac/carbon/app.cpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/mac/app.cpp b/src/mac/app.cpp index cffec9e76e..6d8a867092 100644 --- a/src/mac/app.cpp +++ b/src/mac/app.cpp @@ -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 ) ; diff --git a/src/mac/carbon/app.cpp b/src/mac/carbon/app.cpp index cffec9e76e..6d8a867092 100644 --- a/src/mac/carbon/app.cpp +++ b/src/mac/carbon/app.cpp @@ -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 ) ;