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:
sg 2000-12-21 09:10:16 +00:00
parent bf1f2ecd68
commit 89c5b1834f

View File

@ -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
} }