mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-03 01:42:19 +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, 'OldCreateOrder', 'VCL compatibility property', '');
|
||||||
RegisterPropertyToSkip(TForm, 'TextHeight', 'VCL compatibility property', '');
|
RegisterPropertyToSkip(TForm, 'TextHeight', 'VCL compatibility property', '');
|
||||||
RegisterPropertyToSkip(TForm, 'Scaled', 'VCL compatibility property', '');
|
RegisterPropertyToSkip(TForm, 'Scaled', 'VCL compatibility property', '');
|
||||||
|
RegisterPropertyToSkip(TForm, 'TransparentColorValue', 'VCL compatibility property', '');
|
||||||
LCLProc.OwnerFormDesignerModifiedProc:=@IfOwnerIsFormThenDesignerModified;
|
LCLProc.OwnerFormDesignerModifiedProc:=@IfOwnerIsFormThenDesignerModified;
|
||||||
Screen:=TScreen.Create(nil);
|
Screen:=TScreen.Create(nil);
|
||||||
Application:=TApplication.Create(nil);
|
Application:=TApplication.Create(nil);
|
||||||
|
@ -5031,6 +5031,8 @@ end;
|
|||||||
class procedure TCustomTreeView.WSRegisterClass;
|
class procedure TCustomTreeView.WSRegisterClass;
|
||||||
begin
|
begin
|
||||||
inherited WSRegisterClass;
|
inherited WSRegisterClass;
|
||||||
|
RegisterPropertyToSkip(TCustomTreeView, 'BevelInner', 'VCL compatibility property', '');
|
||||||
|
RegisterPropertyToSkip(TCustomTreeView, 'MultiSelect', 'VCL compatibility property', '');
|
||||||
RegisterCustomTreeView;
|
RegisterCustomTreeView;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user