diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-07-17 09:46:16 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-07-17 09:46:16 +0000 |
commit | 51c351dc95800b46f4d3e9375612694baf7ffd67 (patch) | |
tree | 9e177cace82591d586c50d99ca3dfff44e205bf1 /prototypes/fpgui2/tests | |
parent | 7c9a454f0e731d16c5b1691152caafbf488f7192 (diff) | |
download | fpGUI-51c351dc95800b46f4d3e9375612694baf7ffd67.tar.xz |
* Changed the first parameter in HandleKeyChar from a word to a string.
This is in preperation for handling UTF-8 keyboard input correctly. A UTF-8 char cannot be represented
in a Word type.
* Reworked the keyboard events in TfpgMemo and TfpgEdit based on the previous change. Keyboard handling
under x11 (Linux) works again.
Diffstat (limited to 'prototypes/fpgui2/tests')
-rw-r--r-- | prototypes/fpgui2/tests/edittest.dpr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prototypes/fpgui2/tests/edittest.dpr b/prototypes/fpgui2/tests/edittest.dpr index cb328eec..a71b2982 100644 --- a/prototypes/fpgui2/tests/edittest.dpr +++ b/prototypes/fpgui2/tests/edittest.dpr @@ -124,7 +124,7 @@ type memo.Left := 250; memo.Width := 200; memo.Height := 80; - + listbox := TfpgListBox.Create(self); listbox.Top := 100; listbox.Left := 250; |