lazarus/components/plotfunction/regplotpanel.pp
mattias 26cb90f023 renamed plotpanel to plotfunction
git-svn-id: trunk@17519 -
2008-11-22 15:55:23 +00:00

30 lines
403 B
ObjectPascal

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