mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 07:38:14 +02:00
lcl: register some VCL compatibility properties to skip them during lfm reading (issue #0016660)
git-svn-id: trunk@26834 -
This commit is contained in:
parent
013200586a
commit
1e68ee32f3
@ -1944,6 +1944,7 @@ initialization
|
||||
RegisterPropertyToSkip(TForm, 'OldCreateOrder', 'VCL compatibility property', '');
|
||||
RegisterPropertyToSkip(TForm, 'TextHeight', 'VCL compatibility property', '');
|
||||
RegisterPropertyToSkip(TForm, 'Scaled', 'VCL compatibility property', '');
|
||||
RegisterPropertyToSkip(TForm, 'TransparentColorValue', 'VCL compatibility property', '');
|
||||
LCLProc.OwnerFormDesignerModifiedProc:=@IfOwnerIsFormThenDesignerModified;
|
||||
Screen:=TScreen.Create(nil);
|
||||
Application:=TApplication.Create(nil);
|
||||
|
@ -5031,6 +5031,8 @@ end;
|
||||
class procedure TCustomTreeView.WSRegisterClass;
|
||||
begin
|
||||
inherited WSRegisterClass;
|
||||
RegisterPropertyToSkip(TCustomTreeView, 'BevelInner', 'VCL compatibility property', '');
|
||||
RegisterPropertyToSkip(TCustomTreeView, 'MultiSelect', 'VCL compatibility property', '');
|
||||
RegisterCustomTreeView;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user