lazarus/components/plotfunction/regplotpanel.pp
paul 223ba36920 components: remove ver2_2_x defines
git-svn-id: trunk@36369 -
2012-03-27 07:19:05 +00:00

27 lines
319 B
ObjectPascal

unit regplotpanel;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
plotpanel,
exprplotpanel,
lresources;
Procedure Register;
implementation
Procedure Register;
begin
Classes.RegisterComponents('Misc',[TPlotFunctionPanel, TPlotExpressionPanel]);
end;
initialization
{$i regplotpanel.lrs}
end.