new components, fix in RxCalendarGrid from Edward Ivanov

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@703 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75
2009-02-11 16:34:36 +00:00
parent 850a76a157
commit 264839a3e2
16 changed files with 948 additions and 24 deletions

View File

@ -0,0 +1,30 @@
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.