mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-15 11:49:55 +02:00
IDE: GotoLine dialog: remove unnecessary call to UpCase.
git-svn-id: trunk@60149 -
This commit is contained in:
parent
fcf4d6583a
commit
8924efe91f
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user