You've already forked lazarus-ccr
* Remove Unnecessary typecasts
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1251 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -5471,7 +5471,7 @@ procedure TCustomVirtualTreeOptions.AssignTo(Dest: TPersistent);
|
|||||||
begin
|
begin
|
||||||
if Dest is TCustomVirtualTreeOptions then
|
if Dest is TCustomVirtualTreeOptions then
|
||||||
begin
|
begin
|
||||||
with Dest as TCustomVirtualTreeOptions do
|
with TCustomVirtualTreeOptions(Dest) do
|
||||||
begin
|
begin
|
||||||
PaintOptions := Self.PaintOptions;
|
PaintOptions := Self.PaintOptions;
|
||||||
AnimationOptions := Self.AnimationOptions;
|
AnimationOptions := Self.AnimationOptions;
|
||||||
@ -30394,7 +30394,7 @@ procedure TCustomStringTreeOptions.AssignTo(Dest: TPersistent);
|
|||||||
begin
|
begin
|
||||||
if Dest is TCustomStringTreeOptions then
|
if Dest is TCustomStringTreeOptions then
|
||||||
begin
|
begin
|
||||||
with Dest as TCustomStringTreeOptions do
|
with TCustomStringTreeOptions(Dest) do
|
||||||
StringOptions := Self.StringOptions;
|
StringOptions := Self.StringOptions;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user