* Don't use C-style assignments

git-svn-id: trunk@19141 -
This commit is contained in:
marc 2009-03-28 16:23:09 +00:00
parent 7f68d3bce3
commit 08b05a7399

View File

@ -4388,7 +4388,7 @@ function TPersistentPropertyEditor.GetAttributes: TPropertyAttributes;
begin
Result := [paMultiSelect];
if Assigned(GetPropInfo^.SetProc) then
Result += [paValueList, paSortList, paRevertable, paVolatileSubProperties]
Result := Result + [paValueList, paSortList, paRevertable, paVolatileSubProperties]
else
Result := Result + [paReadOnly];
if GReferenceExpandable and (GetPersistentReference <> nil) and AllEqual then