diff options
author | drewski207 <drewski207@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-10-10 02:26:55 +0000 |
---|---|---|
committer | drewski207 <drewski207@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-10-10 02:26:55 +0000 |
commit | 885a71ab977e2dc6256745290cd4d5806c950ca0 (patch) | |
tree | c01b56638a8413b36d518156d1cd88a0724d3e53 /examples/apps | |
parent | be8e2b695d43bbbbb8aa241265189656caf4e4cb (diff) | |
download | fpGUI-885a71ab977e2dc6256745290cd4d5806c950ca0.tar.xz |
* Fixed compilation for 64bit fpc
Diffstat (limited to 'examples/apps')
-rw-r--r-- | examples/apps/uidesigner/vfdprops.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/apps/uidesigner/vfdprops.pas b/examples/apps/uidesigner/vfdprops.pas index 6d47764b..bc14e890 100644 --- a/examples/apps/uidesigner/vfdprops.pas +++ b/examples/apps/uidesigner/vfdprops.pas @@ -170,7 +170,7 @@ begin for n := 0 to T^.MaxValue do begin sl.Add(P^); - Inc(integer(P), Length(P^) + 1); + Inc(PtrInt(P), Length(P^) + 1); end; end; |