mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 05:59:28 +02:00
LCL: Register some properties to skip for Delphi compatibility.
git-svn-id: trunk@32389 -
This commit is contained in:
parent
4b91967012
commit
7e8d161edb
@ -59,6 +59,7 @@ end;
|
||||
|
||||
class procedure TBevel.WSRegisterClass;
|
||||
begin
|
||||
RegisterPropertyToSkip(Self, 'ParentCustomHint', 'VCL compatibility property', '');
|
||||
inherited WSRegisterClass;
|
||||
RegisterBevel;
|
||||
end;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user