
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@703 8e941d3f-bd1b-0410-a28a-d453659cc2b4
31 lines
441 B
ObjectPascal
31 lines
441 B
ObjectPascal
unit RxDBTimeEdit;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
|
|
RxTimeEdit;
|
|
|
|
type
|
|
TCustomRxDBTimeEdit = class(TCustomRxTimeEdit)
|
|
private
|
|
{ Private declarations }
|
|
protected
|
|
{ Protected declarations }
|
|
public
|
|
{ Public declarations }
|
|
published
|
|
{ Published declarations }
|
|
end;
|
|
|
|
TRxDBTimeEdit = class(TCustomRxDBTimeEdit)
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
|
|
end.
|