You've already forked lazarus-ccr
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:
@ -611,6 +611,7 @@ type
|
|||||||
procedure DoEditorHide; override;
|
procedure DoEditorHide; override;
|
||||||
procedure DoEditorShow; override;
|
procedure DoEditorShow; override;
|
||||||
|
|
||||||
|
procedure EraseBackground(DC: HDC); override;
|
||||||
public
|
public
|
||||||
constructor Create(AOwner: TComponent); override;
|
constructor Create(AOwner: TComponent); override;
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
@ -4205,6 +4206,11 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TRxDBGrid.EraseBackground(DC: HDC);
|
||||||
|
begin
|
||||||
|
// The correct implementation is doing nothing
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TRxDbGridColumns.Notify(Item: TCollectionItem;
|
procedure TRxDbGridColumns.Notify(Item: TCollectionItem;
|
||||||
Action: TCollectionNotification);
|
Action: TCollectionNotification);
|
||||||
begin
|
begin
|
||||||
|
Reference in New Issue
Block a user