Limpieza de mensajes de warning.

git-svn-id: https://192.168.0.254/svn/Proyectos.Acana_FactuGES2/trunk@277 f4e31baf-9722-1c47-927c-6f952f962d4b
This commit is contained in:
David Arranz 2008-07-15 08:05:53 +00:00
parent f05ce28401
commit 18a48ba2ff

View File

@ -13,11 +13,6 @@ type
end;
TFormasPagoPlazosController = class(TControllerBase, IFormasPagoPlazosController)
private
FDataModule : IDataModuleFormasPago;
public
constructor Create; virtual;
destructor Destroy; override;
end;
implementation
@ -28,16 +23,4 @@ uses
uEditorRegistryUtils, uDataModuleFormasPago,
cxControls, schFormasPagoClient_Intf;
constructor TFormasPagoPlazosController.Create;
begin
inherited;
FDataModule := TDataModuleFormasPago.Create(Nil);
end;
destructor TFormasPagoPlazosController.Destroy;
begin
FDataModule := Nil;
inherited;
end;
end.