summaryrefslogtreecommitdiff
path: root/src/corelib/x11
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-09-21 17:00:24 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-09-23 16:24:42 +0200
commit01423e05dcb12e32c315337b05155bce12c9d0d7 (patch)
treea538889366b0c4ea72d9eacc19b4e19b80d6024a /src/corelib/x11
parent616e21fa0575d81aff9a0c468c7432c22170a23d (diff)
downloadfpGUI-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.pas4
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}