Prvni verze
This commit is contained in:
34
libSys/plgQuery.pas
Normal file
34
libSys/plgQuery.pas
Normal file
@ -0,0 +1,34 @@
|
||||
{ *************************************************************************** }
|
||||
{ }
|
||||
{ Jadro pluginu 2 Asseco Solutions }
|
||||
{ }
|
||||
{ *************************************************************************** }
|
||||
|
||||
unit plgQuery;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
dxmdaset, DB;
|
||||
|
||||
type
|
||||
TplgQuery = class(TdxMemData)
|
||||
public
|
||||
// zmena viditelnosti - abych mohl shodit DataSet.Modified
|
||||
procedure SetModified(Value: Boolean);
|
||||
end;
|
||||
|
||||
{ =========================================================================== }
|
||||
|
||||
implementation
|
||||
|
||||
{ ########################################################################### }
|
||||
|
||||
procedure TplgQuery.SetModified(Value: Boolean);
|
||||
begin
|
||||
inherited;
|
||||
end;
|
||||
|
||||
{ ########################################################################### }
|
||||
|
||||
end.
|
||||
Reference in New Issue
Block a user