Browse Source

* fixed 64 bit compilation

git-svn-id: trunk@14086 -
Jonas Maebe 15 years ago
parent
commit
f339276179

+ 1 - 1
packages/cocoaint/src/appkit/NSColorList.inc

@@ -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;

+ 1 - 1
packages/cocoaint/src/appkit/NSColorSpace.inc

@@ -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;

+ 1 - 1
packages/cocoaint/src/appkit/NSTextStorage.inc

@@ -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;