mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 20:38:08 +02:00
IDE: Add missing constructor for TIDEToolBarOptions class.
git-svn-id: trunk@48585 -
This commit is contained in:
parent
9ee5f3b012
commit
27c83d27f5
@ -46,6 +46,9 @@ type
|
||||
private
|
||||
Break: Boolean;
|
||||
ButtonNames: TStringList;
|
||||
public
|
||||
constructor Create;
|
||||
destructor Destroy; override;
|
||||
end;
|
||||
|
||||
TIDEToolBarOptionList = specialize TFPGObjectList<TIDEToolBarOptions>;
|
||||
@ -164,6 +167,20 @@ uses MainBar;
|
||||
const
|
||||
BasePath = 'IDECoolBarOptions/';
|
||||
|
||||
{ TIDEToolBarOptions }
|
||||
|
||||
constructor TIDEToolBarOptions.Create;
|
||||
begin
|
||||
inherited Create;
|
||||
ButtonNames := TStringList.Create;
|
||||
end;
|
||||
|
||||
destructor TIDEToolBarOptions.Destroy;
|
||||
begin
|
||||
ButtonNames.Free;
|
||||
inherited Destroy;
|
||||
end;
|
||||
|
||||
{ TIDECoolBarOptions }
|
||||
|
||||
constructor TIDECoolBarOptions.Create;
|
||||
|
Loading…
Reference in New Issue
Block a user