fix TMRUFileList invalid files not removed

This commit is contained in:
Basile Burg 2014-11-05 02:13:41 +01:00
parent f33fa0be53
commit 97589f0ecc
1 changed files with 8 additions and 0 deletions

View File

@ -36,6 +36,7 @@ type
procedure setMaxCount(aValue: Integer);
function checkItem(const S: string): boolean; virtual;
procedure Put(Index: Integer; const S: string); override;
procedure InsertItem(Index: Integer; const S: string); override;
published
property maxCount: Integer read fMaxCount write setMaxCount;
public
@ -263,6 +264,13 @@ begin
clearOutOfRange;
end;
procedure TMRUList.InsertItem(Index: Integer; const S: string);
begin
if not (checkItem(S)) then exit;
inherited;
clearOutOfRange;
end;
procedure TMRUList.Insert(Index: Integer; const S: string);
begin
if not (checkItem(S)) then exit;