mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-25 10:42:20 -05:00
Reverted something, because it was not needed :)
This commit is contained in:
parent
fc4a3b0acf
commit
14be0488ae
@ -34,7 +34,7 @@ type
|
|||||||
{$IFDEF ccFORMCAPTION}
|
{$IFDEF ccFORMCAPTION}
|
||||||
procedure DoSelectionChange(User: Boolean); override;
|
procedure DoSelectionChange(User: Boolean); override;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
procedure DrawItem(Control: TWinControl; Index: Integer; ARect: TRect; State: TOwnerDrawState);
|
procedure DrawItem(Index: Integer; ARect: TRect; State: TOwnerDrawState); override;
|
||||||
{$IFDEF FPC}
|
{$IFDEF FPC}
|
||||||
procedure WMEraseBkgnd(var message: TLMEraseBkgnd); message LM_ERASEBKGND;
|
procedure WMEraseBkgnd(var message: TLMEraseBkgnd); message LM_ERASEBKGND;
|
||||||
procedure WMVScroll(var message: TLMVScroll); message LM_VSCROLL;
|
procedure WMVScroll(var message: TLMVScroll); message LM_VSCROLL;
|
||||||
@ -300,7 +300,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
procedure TAutoCompleteListBox.DrawItem(Control: TWinControl; Index: Integer; ARect: TRect; State: TOwnerDrawState);
|
procedure TAutoCompleteListBox.DrawItem(Index: Integer; ARect: TRect; State: TOwnerDrawState);
|
||||||
var
|
var
|
||||||
p1, p2, p3, tl, col: Integer;
|
p1, p2, p3, tl, col: Integer;
|
||||||
s, c: string;
|
s, c: string;
|
||||||
@ -398,7 +398,6 @@ begin
|
|||||||
ControlStyle := ControlStyle + [csOpaque];
|
ControlStyle := ControlStyle + [csOpaque];
|
||||||
BorderStyle := bsNone;
|
BorderStyle := bsNone;
|
||||||
Style := lbOwnerDrawFixed;
|
Style := lbOwnerDrawFixed;
|
||||||
OnDrawItem := {$IFDEF FPC}@{$ENDIF}DrawItem;
|
|
||||||
|
|
||||||
IntegralHeight := True;
|
IntegralHeight := True;
|
||||||
{$IFDEF FPC}
|
{$IFDEF FPC}
|
||||||
|
Loading…
Reference in New Issue
Block a user