[webkit-changes] cvs commit: WebCore/kwq KWQPointArray.h KWQRect.h
KWQSize.h
Timothy
thatcher at opensource.apple.com
Thu Sep 29 21:57:27 PDT 2005
thatcher 05/09/29 21:57:26
Modified: . Tag: Safari-2-0-branch ChangeLog
kwq Tag: Safari-2-0-branch KWQPointArray.h KWQRect.h
KWQSize.h
Log:
Merge over of various leak fixes from TOT to Safari-2-0-branch
2005-09-29 Timothy Hatcher <timothy at apple.com>
Fixes build failures on a future release train.
Reviewed by Maciej.
Test cases added: (None needed.)
* kwq/KWQPointArray.h: check if NSPoint is the same as CGPoint
* kwq/KWQRect.h: check if NSRect is the same as CGRect
* kwq/KWQSize.h: check if NSSize is the same as CGSize
Revision Changes Path
No revision
No revision
1.1.2.31 +16 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.1.2.30
retrieving revision 1.1.2.31
diff -u -r1.1.2.30 -r1.1.2.31
--- ChangeLog 28 Sep 2005 18:52:22 -0000 1.1.2.30
+++ ChangeLog 30 Sep 2005 04:57:21 -0000 1.1.2.31
@@ -1,3 +1,19 @@
+2005-09-29 Timothy Hatcher <timothy at apple.com>
+
+ Merge over of various leak fixes from TOT to Safari-2-0-branch
+
+ 2005-09-29 Timothy Hatcher <timothy at apple.com>
+
+ Fixes build failures on a future release train.
+
+ Reviewed by Maciej.
+
+ Test cases added: (None needed.)
+
+ * kwq/KWQPointArray.h: check if NSPoint is the same as CGPoint
+ * kwq/KWQRect.h: check if NSRect is the same as CGRect
+ * kwq/KWQSize.h: check if NSSize is the same as CGSize
+
=== WebCore-417.1 ===
2005-09-28 Timothy Hatcher <timothy at apple.com>
No revision
No revision
1.26.18.1 +4 -0 WebCore/kwq/KWQPointArray.h
Index: KWQPointArray.h
===================================================================
RCS file: /cvs/root/WebCore/kwq/KWQPointArray.h,v
retrieving revision 1.26
retrieving revision 1.26.18.1
diff -u -r1.26 -r1.26.18.1
--- KWQPointArray.h 4 May 2004 16:29:50 -0000 1.26
+++ KWQPointArray.h 30 Sep 2005 04:57:25 -0000 1.26.18.1
@@ -34,7 +34,11 @@
#include "KWQMemArray.h"
+#ifdef NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES
+typedef struct CGPoint NSPoint;
+#else
typedef struct _NSPoint NSPoint;
+#endif
class QPoint {
public:
1.31.10.1 +4 -0 WebCore/kwq/KWQRect.h
Index: KWQRect.h
===================================================================
RCS file: /cvs/root/WebCore/kwq/KWQRect.h,v
retrieving revision 1.31
retrieving revision 1.31.10.1
diff -u -r1.31 -r1.31.10.1
--- KWQRect.h 7 Dec 2004 00:34:02 -0000 1.31
+++ KWQRect.h 30 Sep 2005 04:57:25 -0000 1.31.10.1
@@ -29,7 +29,11 @@
#include "KWQSize.h"
#include "KWQPointArray.h"
+#ifdef NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES
+typedef struct CGRect NSRect;
+#else
typedef struct _NSRect NSRect;
+#endif
class QRect {
public:
1.19.74.1 +4 -0 WebCore/kwq/KWQSize.h
Index: KWQSize.h
===================================================================
RCS file: /cvs/root/WebCore/kwq/KWQSize.h,v
retrieving revision 1.19
retrieving revision 1.19.74.1
diff -u -r1.19 -r1.19.74.1
--- KWQSize.h 22 Jan 2003 00:12:35 -0000 1.19
+++ KWQSize.h 30 Sep 2005 04:57:25 -0000 1.19.74.1
@@ -32,7 +32,11 @@
#include <iosfwd>
#endif
+#ifdef NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES
+typedef struct CGSize NSSize;
+#else
typedef struct _NSSize NSSize;
+#endif
class QSize {
public:
More information about the webkit-changes
mailing list