0024830: Remove redundant keyword 'mutable' in CDL declarations
[occt.git] / src / IFSelect / IFSelect_SelectRange.cdl
index c2618f9..ed519b3 100644 (file)
@@ -26,27 +26,27 @@ raises DomainError
 
 is
 
-    Create returns mutable SelectRange;
+    Create returns SelectRange;
     ---Purpose : Creates a SelectRange. Default is Take all the input list
 
-    SetRange (me : mutable; rankfrom, rankto : mutable IntParam)
+    SetRange (me : mutable; rankfrom, rankto : IntParam)
       raises DomainError;
     ---Purpose : Sets a Range for numbers, with a lower and a upper limits
     --           Error if rankto is lower then rankfrom
 
-    SetOne  (me : mutable; rank : mutable IntParam);
+    SetOne  (me : mutable; rank : IntParam);
     ---Purpose : Sets a unique number (only one Entity will be sorted as True)
 
-    SetFrom (me : mutable; rankfrom : mutable IntParam);
+    SetFrom (me : mutable; rankfrom : IntParam);
     ---Purpose : Sets a Lower limit but no upper limit
 
-    SetUntil (me : mutable; rankto : mutable IntParam);
+    SetUntil (me : mutable; rankto : IntParam);
     ---Purpose : Sets an Upper limit but no lower limit (equivalent to lower 1)
 
     HasLower (me) returns Boolean;
     ---Purpose : Returns True if a Lower limit is defined
 
-    Lower (me) returns mutable IntParam;
+    Lower (me) returns IntParam;
     ---Purpose : Returns Lower limit (if there is; else, value is senseless)
 
     LowerValue (me) returns Integer;
@@ -55,7 +55,7 @@ is
     HasUpper (me) returns Boolean;
     ---Purpose : Returns True if a Lower limit is defined
 
-    Upper (me) returns mutable IntParam;
+    Upper (me) returns IntParam;
     ---Purpose : Returns Upper limit (if there is; else, value is senseless)
 
     UpperValue (me) returns Integer;