IDE: GotoLine dialog: remove unnecessary call to UpCase.

git-svn-id: trunk@60149 -
This commit is contained in:
bart 2019-01-22 17:37:32 +00:00
parent fcf4d6583a
commit 8924efe91f

View File

@ -51,7 +51,7 @@ implementation
procedure TfrmGoto.Edit1KeyPress(Sender: TObject; var Key: char);
begin
if not (UpCase(Key) in [^C,^V,^X,#8,'0'..'9']) then
if not (Key in [^C,^V,^X,#8,'0'..'9']) then
Key:=#0;
end;