mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 12:10:14 +02:00
Merged from fixbranch:
* Applied bugfix by Mattias Gaertner for TWriter.WriteProperty (writing of NIL object instanced caused an invalid access) * Optimized some 'is'/InheritsFrom occurencies
This commit is contained in:
parent
bf1f2ecd68
commit
89c5b1834f
@ -467,7 +467,7 @@ begin
|
|||||||
if not IgnoreChildren then
|
if not IgnoreChildren then
|
||||||
try
|
try
|
||||||
// Set up the ancestor list if we have an ancestor
|
// Set up the ancestor list if we have an ancestor
|
||||||
if Assigned(FAncestor) and FAncestor.InheritsFrom(TComponent) then
|
if FAncestor is TComponent then
|
||||||
begin
|
begin
|
||||||
if csInline in TComponent(FAncestor).ComponentState then
|
if csInline in TComponent(FAncestor).ComponentState then
|
||||||
FRootAncestor := TComponent(FAncestor);
|
FRootAncestor := TComponent(FAncestor);
|
||||||
@ -708,11 +708,14 @@ begin
|
|||||||
end else
|
end else
|
||||||
AncestorObj := nil;
|
AncestorObj := nil;
|
||||||
|
|
||||||
if (not Assigned(ObjValue)) and (ObjValue <> AncestorObj) then
|
if not Assigned(ObjValue) then
|
||||||
begin
|
begin
|
||||||
Driver.BeginProperty(FPropPath + PPropInfo(PropInfo)^.Name);
|
if ObjValue <> AncestorObj then
|
||||||
Driver.WriteIdent('NIL');
|
begin
|
||||||
Driver.EndProperty;
|
Driver.BeginProperty(FPropPath + PPropInfo(PropInfo)^.Name);
|
||||||
|
Driver.WriteIdent('NIL');
|
||||||
|
Driver.EndProperty;
|
||||||
|
end
|
||||||
end else if ObjValue.InheritsFrom(TPersistent) then
|
end else if ObjValue.InheritsFrom(TPersistent) then
|
||||||
if ObjValue.InheritsFrom(TComponent) then
|
if ObjValue.InheritsFrom(TComponent) then
|
||||||
begin
|
begin
|
||||||
@ -805,7 +808,13 @@ end;}
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.2 2000-07-13 11:33:01 michael
|
Revision 1.3 2000-12-21 09:10:16 sg
|
||||||
|
Merged from fixbranch:
|
||||||
|
* Applied bugfix by Mattias Gaertner for TWriter.WriteProperty
|
||||||
|
(writing of NIL object instanced caused an invalid access)
|
||||||
|
* Optimized some 'is'/InheritsFrom occurencies
|
||||||
|
|
||||||
|
Revision 1.2 2000/07/13 11:33:01 michael
|
||||||
+ removed logs
|
+ removed logs
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user