mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-08 14:17:06 +03:00
0024830: Remove redundant keyword 'mutable' in CDL declarations
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
This commit is contained in:
@@ -26,25 +26,25 @@ uses
|
||||
Colour from StepVisual
|
||||
is
|
||||
|
||||
Create returns mutable CurveStyle;
|
||||
Create returns CurveStyle;
|
||||
---Purpose: Returns a CurveStyle
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aCurveFont : CurveStyleFontSelect from StepVisual;
|
||||
aCurveWidth : SizeSelect from StepBasic;
|
||||
aCurveColour : mutable Colour from StepVisual) is virtual;
|
||||
aCurveColour : Colour from StepVisual) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetCurveFont(me : mutable; aCurveFont : CurveStyleFontSelect);
|
||||
CurveFont (me) returns CurveStyleFontSelect;
|
||||
SetCurveWidth(me : mutable; aCurveWidth : SizeSelect);
|
||||
CurveWidth (me) returns SizeSelect;
|
||||
SetCurveColour(me : mutable; aCurveColour : mutable Colour);
|
||||
CurveColour (me) returns mutable Colour;
|
||||
SetCurveColour(me : mutable; aCurveColour : Colour);
|
||||
CurveColour (me) returns Colour;
|
||||
|
||||
fields
|
||||
|
||||
|
Reference in New Issue
Block a user