IDE: Add missing constructor for TIDEToolBarOptions class.

git-svn-id: trunk@48585 -
This commit is contained in:
juha 2015-04-02 07:27:58 +00:00
parent 9ee5f3b012
commit 27c83d27f5

View File

@ -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;