Title: [177411] trunk/Source/WebKit2
Revision
177411
Author
bda...@apple.com
Date
2014-12-16 16:47:15 -0800 (Tue, 16 Dec 2014)

Log Message

Speculative build fix.

* UIProcess/mac/WKImmediateActionController.mm:
(-[WKImmediateActionController _animationControllerForCustomPreview]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (177410 => 177411)


--- trunk/Source/WebKit2/ChangeLog	2014-12-17 00:41:40 UTC (rev 177410)
+++ trunk/Source/WebKit2/ChangeLog	2014-12-17 00:47:15 UTC (rev 177411)
@@ -1,5 +1,12 @@
 2014-12-16  Beth Dakin  <bda...@apple.com>
 
+        Speculative build fix.
+
+        * UIProcess/mac/WKImmediateActionController.mm:
+        (-[WKImmediateActionController _animationControllerForCustomPreview]):
+
+2014-12-16  Beth Dakin  <bda...@apple.com>
+
         REGRESSION: Preview popovers obscure the link, look wrong
         https://bugs.webkit.org/show_bug.cgi?id=139711
         -and corresponding-

Modified: trunk/Source/WebKit2/UIProcess/mac/WKImmediateActionController.mm (177410 => 177411)


--- trunk/Source/WebKit2/UIProcess/mac/WKImmediateActionController.mm	2014-12-17 00:41:40 UTC (rev 177410)
+++ trunk/Source/WebKit2/UIProcess/mac/WKImmediateActionController.mm	2014-12-17 00:47:15 UTC (rev 177411)
@@ -424,7 +424,7 @@
     Class nsPopoverAnimationControllerClass = NSClassFromString(@"NSPopoverAnimationController");
     if (!nsPopoverAnimationControllerClass)
         return nil;
-    NSPopoverAnimationController *popoverController = [NSPopoverAnimationController popoverAnimationControllerWithPopover:_previewPopover.get()];
+    NSPopoverAnimationController *popoverController = [nsPopoverAnimationControllerClass popoverAnimationControllerWithPopover:_previewPopover.get()];
     popoverController.preferredEdge = NSMaxYEdge;
     popoverController.anchorView = _wkView;
     popoverController.positioningRect = _popoverOriginRect;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to