mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-30 12:12:47 +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 Clear;
|
||||||
procedure EndUpdate;
|
procedure EndUpdate;
|
||||||
procedure Repaint; override;
|
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 FindData(StartIndex: Integer; Value: Pointer; Inclusive, Wrap: Boolean): TListItem;
|
||||||
function GetHitTestInfoAt(X, Y: Integer): THitTests;
|
function GetHitTestInfoAt(X, Y: Integer): THitTests;
|
||||||
function GetItemAt(x,y: integer): TListItem;
|
function GetItemAt(x,y: integer): TListItem;
|
||||||
|
@ -1107,7 +1107,7 @@ end;
|
|||||||
function TCustomListView.FindCaption(StartIndex: Integer; Value: string;
|
function TCustomListView.FindCaption(StartIndex: Integer; Value: string;
|
||||||
Partial, Inclusive, Wrap: Boolean; PartStart: Boolean = True): TListItem;
|
Partial, Inclusive, Wrap: Boolean; PartStart: Boolean = True): TListItem;
|
||||||
begin
|
begin
|
||||||
Result := FListItems.FindCaption(StartIndex, Value, Partial, Inclusive, Wrap);
|
Result := FListItems.FindCaption(StartIndex, Value, Partial, Inclusive, Wrap, PartStart);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TCustomListView.FindData(StartIndex: Integer; Value: Pointer;
|
function TCustomListView.FindData(StartIndex: Integer; Value: Pointer;
|
||||||
|
Loading…
Reference in New Issue
Block a user