mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00
lazdatadesktop: Fix "Control has no parent error" when creating a new data dictionary.
git-svn-id: trunk@58820 -
This commit is contained in:
parent
8e54c9731d
commit
aad4e0c4e2
@ -108,6 +108,8 @@ Type
|
||||
procedure ShowSubLists(TV: TTreeView; ParentNode: TTreeNode; AObject: TObject);
|
||||
procedure ShowTableObjectList(TV: TTreeView; ParentNode: TTreeNode; ATableDef: TDDTableDef; AObjectType: TEditObjectType);
|
||||
procedure ShowGlobalObjectList(TV: TTreeView; ParentNode: TTreeNode; AObjectType: TEditObjectType; AShowSubLists : Boolean = False);
|
||||
Protected
|
||||
procedure CreateHandle; override;
|
||||
Public
|
||||
Constructor Create(AOwner : TComponent); override;
|
||||
Destructor Destroy; override;
|
||||
@ -351,7 +353,7 @@ constructor TDataDictEditor.Create(AOwner: TComponent);
|
||||
begin
|
||||
inherited Create(AOwner);
|
||||
FDD:=TFPDataDictionary.Create;
|
||||
//CreateGUI;
|
||||
CreateGUI;
|
||||
end;
|
||||
|
||||
Procedure TDataDictEditor.CreateGUI;
|
||||
@ -412,6 +414,11 @@ begin
|
||||
end;
|
||||
FTV.Images:=FImgList;
|
||||
FMenu.Images:=FImgList;
|
||||
end;
|
||||
|
||||
procedure TDataDictEditor.CreateHandle;
|
||||
begin
|
||||
inherited;
|
||||
ShowDictionary;
|
||||
end;
|
||||
|
||||
|
@ -22,8 +22,6 @@
|
||||
</BuildModes>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>
|
||||
<ExcludeFileFilter Value="*.(bak|ppu|ppw|o|so);*~;backup"/>
|
||||
</PublishOptions>
|
||||
<RunParams>
|
||||
<local>
|
||||
|
Loading…
Reference in New Issue
Block a user