LCL: Register some properties to skip for Delphi compatibility.

git-svn-id: trunk@32389 -
This commit is contained in:
juha 2011-09-17 16:32:48 +00:00
parent 4b91967012
commit 7e8d161edb
2 changed files with 4 additions and 2 deletions

View File

@ -59,6 +59,7 @@ end;
class procedure TBevel.WSRegisterClass;
begin
RegisterPropertyToSkip(Self, 'ParentCustomHint', 'VCL compatibility property', '');
inherited WSRegisterClass;
RegisterBevel;
end;

View File

@ -475,8 +475,9 @@ end;
class procedure TCustomListView.WSRegisterClass;
begin
RegisterPropertyToSkip(Self, 'ItemIndex',
'Property streamed in older Lazarus revision', '');
RegisterPropertyToSkip(Self, 'ItemIndex', 'Property streamed in older Lazarus revision', '');
RegisterPropertyToSkip(Self, 'AlignWithMargins', 'VCL compatibility property', '');
RegisterPropertyToSkip(Self, 'BevelKind', 'VCL compatibility property', '');
inherited WSRegisterClass;
RegisterCustomListView;
end;