diff --git a/src/AIS/AIS_AngleDimension.cxx b/src/AIS/AIS_AngleDimension.cxx index bf01091bf7..5f543d0afb 100644 --- a/src/AIS/AIS_AngleDimension.cxx +++ b/src/AIS/AIS_AngleDimension.cxx @@ -1242,10 +1242,6 @@ void AIS_AngleDimension::AdjustParameters (const gp_Pnt& theTextPos, Handle(Prs3d_DimensionAspect) aDimensionAspect = myDrawer->DimensionAspect(); Standard_Real anArrowLength = aDimensionAspect->ArrowAspect()->Length(); - // Compute flyout direction vector. - gp_Dir aPlaneNormal = GetPlane().Axis().Direction(); - gp_Dir aTargetPointsDir = gce_MakeDir (myFirstPoint, mySecondPoint); - // Build circle with radius that is equal to distance from text position to the center point. Standard_Real aRadius = gp_Vec (myCenterPoint, theTextPos).Magnitude(); diff --git a/src/AIS/AIS_Dimension.cxx b/src/AIS/AIS_Dimension.cxx index d8da604057..23b23ee7de 100755 --- a/src/AIS/AIS_Dimension.cxx +++ b/src/AIS/AIS_Dimension.cxx @@ -1532,8 +1532,6 @@ void AIS_Dimension::FitTextAlignmentForLinear (const gp_Pnt& theFirstPoint, Handle(Prs3d_DimensionAspect) aDimensionAspect = myDrawer->DimensionAspect(); - gp_Lin aDimensionLine = gce_MakeLin (aLineBegPoint, aLineEndPoint); - // For extensions we need to know arrow size, text size and extension size: get it from aspect Quantity_Length anArrowLength = aDimensionAspect->ArrowAspect()->Length(); diff --git a/src/Draw/Draw_Window.cxx b/src/Draw/Draw_Window.cxx index a6287b0676..8d102b8dfb 100644 --- a/src/Draw/Draw_Window.cxx +++ b/src/Draw/Draw_Window.cxx @@ -179,8 +179,6 @@ static Standard_Boolean tty; /* Non-zero means standard input is a * terminal-like device. Zero means it's * a file. */ -static unsigned long thePixels[MAXCOLOR]; - Standard_Integer Draw_WindowScreen = 0; Standard_Boolean Draw_BlackBackGround = Standard_True; @@ -194,6 +192,8 @@ Draw_Window* Draw_Window::firstWindow = NULL; #include #include +static unsigned long thePixels[MAXCOLOR]; + Display* Draw_WindowDisplay = NULL; Colormap Draw_WindowColorMap; static Handle(Aspect_DisplayConnection) Draw_DisplayConnection; diff --git a/src/Draw/Draw_Window_1.mm b/src/Draw/Draw_Window_1.mm index 6e018744ea..bef2dc8475 100644 --- a/src/Draw/Draw_Window_1.mm +++ b/src/Draw/Draw_Window_1.mm @@ -585,7 +585,6 @@ void GetNextEvent (Standard_Boolean theWait, theWindowNumber = [aWindow windowNumber]; NSPoint aMouseLoc = [aView convertPoint: [anEvent locationInWindow] fromView: nil]; - NSRect aBounds = [aView bounds]; theX = Standard_Integer (aMouseLoc.x); theY = Standard_Integer (aMouseLoc.y); diff --git a/src/ShapeFix/ShapeFix_IntersectionTool.cxx b/src/ShapeFix/ShapeFix_IntersectionTool.cxx index 7b0edb179d..57df2f525e 100644 --- a/src/ShapeFix/ShapeFix_IntersectionTool.cxx +++ b/src/ShapeFix/ShapeFix_IntersectionTool.cxx @@ -835,7 +835,7 @@ Standard_Boolean ShapeFix_IntersectionTool::FixSelfIntersectWire // step 2 : intersection of non-adjacent edges ShapeFix_DataMapOfShapeBox2d boxes; - Bnd_Box2d aTotalBox = CreateBoxes2d(sewd,face,boxes); + (void)CreateBoxes2d(sewd,face,boxes); Handle(ShapeAnalysis_Surface) sas = new ShapeAnalysis_Surface(BRep_Tool::Surface(face)); NbSplit=0;