diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2013-04-29 12:17:43 +0100 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2013-04-29 12:38:50 +0100 |
commit | b9112094c1d9e319890f902f19f55764cb3f0c49 (patch) | |
tree | 6bf3db3fb2557866e974e206156fc9a3f0137b5f /src | |
parent | 57a871ad6f7a771d707e96a3617a0b342c3869f7 (diff) | |
download | fpGUI-b9112094c1d9e319890f902f19f55764cb3f0c49.tar.xz |
Fixes a spelling mistake in a code comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/fpg_editcombo.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/fpg_editcombo.pas b/src/gui/fpg_editcombo.pas index 3887cd13..514c8155 100644 --- a/src/gui/fpg_editcombo.pas +++ b/src/gui/fpg_editcombo.pas @@ -529,7 +529,7 @@ begin FNewItem := False; // Handle only printable characters - // Note: This is now UTF-8 compliant! + // Note: This is not UTF-8 compliant! if Enabled and (Ord(AText[1]) > 31) and (Ord(AText[1]) < 127) or (Length(AText) > 1) then begin if (FMaxLength <= 0) or (UTF8Length(FText) < FMaxLength) then |