mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00
PoChecker: removed unused TPoCheckerForm.AddToMasterPoList(Fn: String) method
git-svn-id: trunk@60656 -
This commit is contained in:
parent
967a52e177
commit
4d87dcf835
@ -79,7 +79,6 @@ type
|
||||
procedure ClearStatusBar;
|
||||
procedure UpdateGUI(HasSelection: Boolean);
|
||||
function GetSelectedMasterFiles: TStringList;
|
||||
procedure AddToMasterPoList(Fn: String);
|
||||
procedure AddToMasterPoList(S: TStrings);
|
||||
procedure SetSelectedMasterFiles(S: TStrings);
|
||||
procedure ApplyConfig;
|
||||
@ -603,18 +602,6 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TPoCheckerForm.AddToMasterPoList(Fn: String);
|
||||
var
|
||||
Idx: Integer;
|
||||
begin
|
||||
if not FileExistsUtf8(Fn) then Exit;
|
||||
Idx := MasterPoListBox.Items.IndexOf(Fn);
|
||||
if (Idx = -1) then
|
||||
begin
|
||||
MasterPoListBox.Items.Add(Fn);
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TPoCheckerForm.AddToMasterPoList(S: TStrings);
|
||||
var
|
||||
i, Idx: Integer;
|
||||
|
Loading…
Reference in New Issue
Block a user