Skip to content

Commit

Permalink
finder: fix action param type
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey-T committed Jul 11, 2024
1 parent 470af4d commit 38c4d7d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions atsynedit/atsynedit_finder.pas
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,11 @@ TATEditorFinder = class(TATTextFinder)
procedure DoAction_ExtractAll(AWithEvent: boolean; AMatches: TStringList;
ASorted, ACaseSens: boolean; ADuplicates: TDuplicates);
function DoAction_ReplaceAll: integer;
function DoAction_HighlightAllEditorMatches(AColorBorder: TColor;
AStyleBorder: TATLineStyle; ATagValue, AMaxLines: integer): integer;
function DoAction_HighlightAllEditorMatches(
AColorBorder: TColor;
AStyleBorder: TATLineStyle;
ATagValue: Int64;
AMaxLines: integer): integer;
//
property OnFound: TATFinderFound read FOnFound write FOnFound;
property OnWrapAtEdge: TNotifyEvent read FOnWrapAtEdge write FOnWrapAtEdge;
Expand Down Expand Up @@ -2687,7 +2690,9 @@ procedure TATEditorFinder.GetEditorSelRange(out AX1, AY1, AX2, AY2: integer;


function TATEditorFinder.DoAction_HighlightAllEditorMatches(
AColorBorder: TColor; AStyleBorder: TATLineStyle; ATagValue,
AColorBorder: TColor;
AStyleBorder: TATLineStyle;
ATagValue: Int64;
AMaxLines: integer): integer;
var
St: TATStrings;
Expand Down

0 comments on commit 38c4d7d

Please sign in to comment.