git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50278
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// nothing to do
return true;
// nothing to do
return true;
- HIShapeOffset( M_REGION , x , y ) ;
+ verify_noerr( HIShapeOffset( M_REGION , x , y ) ) ;
switch (op)
{
case wxRGN_AND:
switch (op)
{
case wxRGN_AND:
- HIShapeIntersect( M_REGION , OTHER_M_REGION(region) , M_REGION ) ;
+ verify_noerr( HIShapeIntersect( M_REGION , OTHER_M_REGION(region) , M_REGION ) );
- HIShapeUnion( M_REGION , OTHER_M_REGION(region) , M_REGION ) ;
+ verify_noerr( HIShapeUnion( M_REGION , OTHER_M_REGION(region) , M_REGION ) );
// XOR is defined as the difference between union and intersection
wxCFRef< HIShapeRef > unionshape( HIShapeCreateUnion( M_REGION , OTHER_M_REGION(region) ) );
wxCFRef< HIShapeRef > intersectionshape( HIShapeCreateIntersection( M_REGION , OTHER_M_REGION(region) ) );
// XOR is defined as the difference between union and intersection
wxCFRef< HIShapeRef > unionshape( HIShapeCreateUnion( M_REGION , OTHER_M_REGION(region) ) );
wxCFRef< HIShapeRef > intersectionshape( HIShapeCreateIntersection( M_REGION , OTHER_M_REGION(region) ) );
- HIShapeDifference( unionshape, intersectionshape, M_REGION );
+ verify_noerr( HIShapeDifference( unionshape, intersectionshape, M_REGION ) );
}
break ;
case wxRGN_DIFF:
}
break ;
case wxRGN_DIFF:
- HIShapeDifference( M_REGION , OTHER_M_REGION(region) , M_REGION ) ;
+ verify_noerr( HIShapeDifference( M_REGION , OTHER_M_REGION(region) , M_REGION ) ) ;
if ( HIShapeIsRectangular(intersect) && CGRectEqualToRect(rect,bounds) )
return wxInRegion;
if ( HIShapeIsRectangular(intersect) && CGRectEqualToRect(rect,bounds) )
return wxInRegion;
+ else if ( HIShapeIsEmpty( intersect ) )
+ else
+ return wxPartRegion;
}
///////////////////////////////////////////////////////////////////////////////
}
///////////////////////////////////////////////////////////////////////////////