IdeIntf: Make methods private. Formatting. The usefull changes in issues #32902 and #32903.

git-svn-id: trunk@56873 -
This commit is contained in:
juha 2017-12-30 12:06:13 +00:00
parent 84369842cc
commit 1cc6bfbcd1
2 changed files with 3 additions and 3 deletions

View File

@ -51,6 +51,8 @@ type
FOwnerComponent: TPersistent;
FOwnerPersistent: TPersistent;
FPropertyName: String;
procedure FillCollectionListBox;
procedure SelectInObjectInspector(ForceUpdate, UnselectAll: Boolean);
protected
procedure UpdateCaption;
procedure UpdateButtons;
@ -59,8 +61,6 @@ type
procedure PersistentDeleting(APersistent: TPersistent);
procedure RefreshPropertyValues;
public
procedure FillCollectionListBox;
procedure SelectInObjectInspector(ForceUpdate, UnselectAll: Boolean);
procedure SetCollection(NewCollection: TCollection;
NewOwnerPersistent: TPersistent; const NewPropName: String);
procedure Modified;

View File

@ -37,7 +37,7 @@ type
TDBGridColumnsPropertyEditor = class (TCollectionPropertyEditor)
public
class function ShowCollectionEditor(ACollection: TCollection;
OwnerPersistent: TPersistent; const PropName: String): TCustomForm; override;
OwnerPersistent: TPersistent; const PropName: String): TCustomForm; override;
end;
{ TLookupFieldProperty }