Title: [122673] trunk/Source/WebCore
- Revision
- 122673
- Author
- [email protected]
- Date
- 2012-07-14 14:45:37 -0700 (Sat, 14 Jul 2012)
Log Message
Fix the Snow Leopard build.
* platform/LocalizedStrings.cpp:
(WebCore::contextMenuItemTagLookUpInDictionary): Fix a typo in the condition so that Snow Leopard
continues to take the expected path.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (122672 => 122673)
--- trunk/Source/WebCore/ChangeLog 2012-07-14 21:38:39 UTC (rev 122672)
+++ trunk/Source/WebCore/ChangeLog 2012-07-14 21:45:37 UTC (rev 122673)
@@ -1,3 +1,11 @@
+2012-07-14 Mark Rowe <[email protected]>
+
+ Fix the Snow Leopard build.
+
+ * platform/LocalizedStrings.cpp:
+ (WebCore::contextMenuItemTagLookUpInDictionary): Fix a typo in the condition so that Snow Leopard
+ continues to take the expected path.
+
2012-07-14 Ryosuke Niwa <[email protected]>
Accessing the last item in children should be a constant time operation
Modified: trunk/Source/WebCore/platform/LocalizedStrings.cpp (122672 => 122673)
--- trunk/Source/WebCore/platform/LocalizedStrings.cpp 2012-07-14 21:38:39 UTC (rev 122672)
+++ trunk/Source/WebCore/platform/LocalizedStrings.cpp 2012-07-14 21:45:37 UTC (rev 122673)
@@ -254,7 +254,7 @@
String contextMenuItemTagLookUpInDictionary(const String& selectedString)
{
-#if !PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED <= 1060
+#if PLATFORM(MAC) && !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED <= 1060
UNUSED_PARAM(selectedString);
return WEB_UI_STRING("Look Up in Dictionary", "Look Up in Dictionary context menu item");
#else
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes