mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-11 13:28:04 +02:00
Merged revision(s) 51588 #947a3dc602 from trunk:
LCL: Pass the PartStart parameter of TCustomListView.FindCaption forward. It was ignored. ........ git-svn-id: branches/fixes_1_6@51612 -
This commit is contained in:
parent
26e14895f4
commit
991b685619
@ -1552,7 +1552,8 @@ type
|
||||
procedure Clear;
|
||||
procedure EndUpdate;
|
||||
procedure Repaint; override;
|
||||
function FindCaption(StartIndex: Integer; Value: string; Partial, Inclusive, Wrap: Boolean; PartStart: Boolean = True): TListItem;
|
||||
function FindCaption(StartIndex: Integer; Value: string;
|
||||
Partial, Inclusive, Wrap: Boolean; PartStart: Boolean = True): TListItem;
|
||||
function FindData(StartIndex: Integer; Value: Pointer; Inclusive, Wrap: Boolean): TListItem;
|
||||
function GetHitTestInfoAt(X, Y: Integer): THitTests;
|
||||
function GetItemAt(x,y: integer): TListItem;
|
||||
|
@ -1107,7 +1107,7 @@ end;
|
||||
function TCustomListView.FindCaption(StartIndex: Integer; Value: string;
|
||||
Partial, Inclusive, Wrap: Boolean; PartStart: Boolean = True): TListItem;
|
||||
begin
|
||||
Result := FListItems.FindCaption(StartIndex, Value, Partial, Inclusive, Wrap);
|
||||
Result := FListItems.FindCaption(StartIndex, Value, Partial, Inclusive, Wrap, PartStart);
|
||||
end;
|
||||
|
||||
function TCustomListView.FindData(StartIndex: Integer; Value: Pointer;
|
||||
|
Loading…
Reference in New Issue
Block a user