From 8e6c6eb98df2cff5c66f9ea71414e62de8a6b851 Mon Sep 17 00:00:00 2001 From: vincents Date: Mon, 14 Nov 2005 12:48:55 +0000 Subject: [PATCH] renamed ClimbRate to Increment (issue #1432) git-svn-id: trunk@8147 - --- components/rtticontrols/rttictrls.pas | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/components/rtticontrols/rttictrls.pas b/components/rtticontrols/rttictrls.pas index 19275549a1..da314b762a 100644 --- a/components/rtticontrols/rttictrls.pas +++ b/components/rtticontrols/rttictrls.pas @@ -1146,10 +1146,10 @@ Type property Align; property Anchors; property BorderSpacing; - property ClimbRate; property Constraints; property DecimalPlaces; property Enabled; + property Increment; property Link; property MaxValue; property MinValue; @@ -1205,9 +1205,9 @@ Type property Align; property Anchors; property BorderSpacing; - property ClimbRate; property Constraints; property Enabled; + property Increment; property Link; property MaxValue; property MinValue; @@ -2920,7 +2920,7 @@ begin TypeData:=GetTypeData(FLink.Editor.GetPropType); MinValue:=TypeData^.MinValue; MaxValue:=TypeData^.MaxValue; - ClimbRate:=1; + Increment:=1; DecimalPlaces:=0; end; @@ -2929,7 +2929,7 @@ begin TypeData:=GetTypeData(FLink.Editor.GetPropType); MinValue:=TypeData^.MinInt64Value; MaxValue:=TypeData^.MaxInt64Value; - ClimbRate:=1; + Increment:=1; DecimalPlaces:=0; end; @@ -2938,7 +2938,7 @@ begin TypeData:=GetTypeData(FLink.Editor.GetPropType); MinValue:=TypeData^.MinQWordValue; MaxValue:=TypeData^.MaxQWordValue; - ClimbRate:=1; + Increment:=1; DecimalPlaces:=0; end; @@ -3048,7 +3048,7 @@ begin TypeData:=GetTypeData(FLink.Editor.GetPropType); MinValue:=TypeData^.MinValue; MaxValue:=TypeData^.MaxValue; - ClimbRate:=1; + Increment:=1; DecimalPlaces:=0; end; @@ -3057,7 +3057,7 @@ begin TypeData:=GetTypeData(FLink.Editor.GetPropType); MinValue:=TypeData^.MinInt64Value; MaxValue:=TypeData^.MaxInt64Value; - ClimbRate:=1; + Increment:=1; DecimalPlaces:=0; end; @@ -3066,7 +3066,7 @@ begin TypeData:=GetTypeData(FLink.Editor.GetPropType); MinValue:=TypeData^.MinQWordValue; MaxValue:=TypeData^.MaxQWordValue; - ClimbRate:=1; + Increment:=1; DecimalPlaces:=0; end;