EraseBackground procedure added.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2591 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
yangjixian
2012-11-02 00:53:24 +00:00
parent be31f78ae8
commit 6f55ebe095

View File

@ -611,6 +611,7 @@ type
procedure DoEditorHide; override;
procedure DoEditorShow; override;
procedure EraseBackground(DC: HDC); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
@ -4205,6 +4206,11 @@ begin
end;
end;
procedure TRxDBGrid.EraseBackground(DC: HDC);
begin
// The correct implementation is doing nothing
end;
procedure TRxDbGridColumns.Notify(Item: TCollectionItem;
Action: TCollectionNotification);
begin