Log Message
2011-06-29 Kent Tamura <[email protected]> [Mac] Attempt to fix Leopard build.
* platform/mac/CursorMac.mm:
(WebCore::Cursor::ensurePlatformCursor):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (90087 => 90088)
--- trunk/Source/WebCore/ChangeLog 2011-06-30 05:12:28 UTC (rev 90087)
+++ trunk/Source/WebCore/ChangeLog 2011-06-30 05:39:40 UTC (rev 90088)
@@ -1,3 +1,10 @@
+2011-06-29 Kent Tamura <[email protected]>
+
+ [Mac] Attempt to fix Leopard build.
+
+ * platform/mac/CursorMac.mm:
+ (WebCore::Cursor::ensurePlatformCursor):
+
2011-06-29 Darin Adler <[email protected]>
Reviewed by Dan Bernstein.
Modified: trunk/Source/WebCore/platform/mac/CursorMac.mm (90087 => 90088)
--- trunk/Source/WebCore/platform/mac/CursorMac.mm 2011-06-30 05:12:28 UTC (rev 90087)
+++ trunk/Source/WebCore/platform/mac/CursorMac.mm 2011-06-30 05:39:40 UTC (rev 90088)
@@ -255,7 +255,11 @@
m_platformCursor = leakNamedCursor("noneCursor", 7, 7);
break;
case Cursor::NotAllowed:
+#if !defined(BUILDING_ON_LEOPARD)
m_platformCursor = [NSCursor operationNotAllowedCursor];
+#else
+ m_platformCursor = leakNamedCursor("notAllowedCursor", 11, 11);
+#endif
break;
case Cursor::ZoomIn:
m_platformCursor = leakNamedCursor("zoomInCursor", 7, 7);
_______________________________________________ webkit-changes mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes
