Title: [88451] trunk/Source/WebCore
Revision
88451
Author
[email protected]
Date
2011-06-09 07:44:20 -0700 (Thu, 09 Jun 2011)

Log Message

[Qt][Mac] Speculative buildfix after r88286.

* platform/graphics/IntPoint.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (88450 => 88451)


--- trunk/Source/WebCore/ChangeLog	2011-06-09 14:28:54 UTC (rev 88450)
+++ trunk/Source/WebCore/ChangeLog	2011-06-09 14:44:20 UTC (rev 88451)
@@ -1,3 +1,9 @@
+2011-06-09  Csaba Osztrogonác  <[email protected]>
+
+        [Qt][Mac] Speculative buildfix after r88286.
+
+        * platform/graphics/IntPoint.h:
+
 2011-06-09  Mike Lawther  <[email protected]>
 
         Reviewed by Kent Tamura.

Modified: trunk/Source/WebCore/platform/graphics/IntPoint.h (88450 => 88451)


--- trunk/Source/WebCore/platform/graphics/IntPoint.h	2011-06-09 14:28:54 UTC (rev 88450)
+++ trunk/Source/WebCore/platform/graphics/IntPoint.h	2011-06-09 14:44:20 UTC (rev 88451)
@@ -38,7 +38,7 @@
 #endif
 
 
-#if OS(DARWIN)
+#if OS(DARWIN) && !PLATFORM(QT)
 #ifdef NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES
 typedef struct CGPoint NSPoint;
 #else
@@ -126,7 +126,7 @@
     operator CGPoint() const;
 #endif
 
-#if OS(DARWIN) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)
+#if OS(DARWIN) && !PLATFORM(QT) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)
     explicit IntPoint(const NSPoint&); // don't do this implicitly since it's lossy
     operator NSPoint() const;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to