diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-09-21 17:00:24 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-09-23 16:24:42 +0200 |
commit | 01423e05dcb12e32c315337b05155bce12c9d0d7 (patch) | |
tree | a538889366b0c4ea72d9eacc19b4e19b80d6024a /src/corelib/x11 | |
parent | 616e21fa0575d81aff9a0c468c7432c22170a23d (diff) | |
download | fpGUI-01423e05dcb12e32c315337b05155bce12c9d0d7.tar.xz |
bugfix: I broke the array types earlier. This restores them to what they were.
Diffstat (limited to 'src/corelib/x11')
-rw-r--r-- | src/corelib/x11/fpg_x11.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/x11/fpg_x11.pas b/src/corelib/x11/fpg_x11.pas index ce5ed273..9510a182 100644 --- a/src/corelib/x11/fpg_x11.pas +++ b/src/corelib/x11/fpg_x11.pas @@ -53,10 +53,10 @@ type TfpgGContext = Xlib.TGc; PInt = ^integer; - TAtomArray = array of TAtom; + TAtomArray = array[0..0] of TAtom; PAtomArray = ^TAtomArray; - TWindowArray = array of TWindow; + TWindowArray = array[0..0] of TWindow; PWindowArray = ^TWindowArray; {$HINTS OFF} |