* fixed 64 bit compilation

git-svn-id: trunk@14086 -
This commit is contained in:
Jonas Maebe 2009-11-06 17:27:27 +00:00
parent b9a8592a11
commit f339276179
3 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ var
isProfileBased: 0..1;
int: 0..((1 shl 24)-1);
{$ifdef cpu64}
int: 0..((1 shl 32)-1);
int2: 0..((1 shl 32)-1);
{$endif}
end;
__clAuxiliaryStorage: id;

View File

@ -66,7 +66,7 @@ type
replacedDuringUnarchiving: 0..1;
int: 0..((1 shl 20)-1);
{$ifdef cpu64}
int: 0..((1 shl 32)-1);
int2: 0..((1 shl 32)-1);
{$endif}
end;
___cgColorSpace: Pointer;

View File

@ -62,7 +62,7 @@ var
int: 0..((1 shl 7)-1);
disabled: 0..((1 shl 16)-1);
{$ifdef cpu64}
int: 0..((1 shl 32)-1);
int2: 0..((1 shl 32)-1);
{$endif}
end;
__layoutManagers: NSMutableArray;