[webkit-changes] cvs commit: WebCore/kwq KWQPointArray.h KWQSize.h

Timothy thatcher at opensource.apple.com
Tue Oct 11 17:44:54 PDT 2005


thatcher    05/10/11 17:44:54

  Modified:    .        ChangeLog
               kwq      KWQPointArray.h KWQSize.h
  Log:
          Reviewed by Darin.
  
          workaround for <rdar://problem/4294625> to fix our build
  
          * kwq/KWQPointArray.h:
          * kwq/KWQSize.h:
  
  Revision  Changes    Path
  1.234     +9 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.233
  retrieving revision 1.234
  diff -u -r1.233 -r1.234
  --- ChangeLog	11 Oct 2005 20:32:55 -0000	1.233
  +++ ChangeLog	12 Oct 2005 00:44:50 -0000	1.234
  @@ -1,3 +1,12 @@
  +2005-10-11  Timothy Hatcher  <timothy at apple.com>
  +
  +        Reviewed by Darin.
  +
  +        workaround for <rdar://problem/4294625> to fix our build
  +        
  +        * kwq/KWQPointArray.h:
  +        * kwq/KWQSize.h:
  +
   2005-10-10  Justin Garcia  <justin.garcia at apple.com>
   
           Reviewed by eric
  
  
  
  1.29      +5 -0      WebCore/kwq/KWQPointArray.h
  
  Index: KWQPointArray.h
  ===================================================================
  RCS file: /cvs/root/WebCore/kwq/KWQPointArray.h,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- KWQPointArray.h	30 Sep 2005 04:04:57 -0000	1.28
  +++ KWQPointArray.h	12 Oct 2005 00:44:53 -0000	1.29
  @@ -34,6 +34,11 @@
   
   #include "KWQMemArray.h"
   
  +// workaround for <rdar://problem/4294625>
  +#if ! __LP64__ && ! NS_BUILD_32_LIKE_64
  +#undef NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES
  +#endif
  +
   #ifdef NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES
   typedef struct CGPoint NSPoint;
   #else
  
  
  
  1.22      +5 -0      WebCore/kwq/KWQSize.h
  
  Index: KWQSize.h
  ===================================================================
  RCS file: /cvs/root/WebCore/kwq/KWQSize.h,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- KWQSize.h	30 Sep 2005 04:04:57 -0000	1.21
  +++ KWQSize.h	12 Oct 2005 00:44:53 -0000	1.22
  @@ -32,6 +32,11 @@
   #include <iosfwd>
   #endif
   
  +// workaround for <rdar://problem/4294625>
  +#if ! __LP64__ && ! NS_BUILD_32_LIKE_64
  +#undef NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES
  +#endif
  +
   #ifdef NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES
   typedef struct CGSize NSSize;
   #else
  
  
  



More information about the webkit-changes mailing list