PoChecker: removed unused TPoCheckerForm.AddToMasterPoList(Fn: String) method

git-svn-id: trunk@60656 -
This commit is contained in:
maxim 2019-03-11 22:34:42 +00:00
parent 967a52e177
commit 4d87dcf835

View File

@ -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;