mirror of https://gitlab.com/basile.b/dexed.git
prevent dup in imports list
This commit is contained in:
parent
4bb368d8a2
commit
17a49c92a9
|
@ -1039,7 +1039,7 @@ begin
|
|||
itm := ''
|
||||
else if (tok^.Data = ';') or (tok^.Data = ':') or (tok^.Data = ',') then
|
||||
begin
|
||||
if length(itm) <> 0 then
|
||||
if (length(itm) <> 0) and (imports.IndexOf(itm) = -1) then
|
||||
imports.Add(itm);
|
||||
itm := '';
|
||||
if (tok^.Data = ';') or (tok^.Data = ':') then
|
||||
|
|
|
@ -136,7 +136,7 @@ inherited CEEditorWidget: TCEEditorWidget
|
|||
OnClick = MenuItem5Click
|
||||
end
|
||||
object MenuItem8: TMenuItem
|
||||
Caption = 'Save import to file...'
|
||||
Caption = 'Save imports to file...'
|
||||
OnClick = MenuItem8Click
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue