Title: [176370] trunk/Source/WebKit2
Revision
176370
Author
[email protected]
Date
2014-11-19 17:16:11 -0800 (Wed, 19 Nov 2014)

Log Message

Fix the 32-bit build

* UIProcess/mac/TextIndicatorWindow.mm:
(WebKit::TextIndicatorWindow::setTextIndicator):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (176369 => 176370)


--- trunk/Source/WebKit2/ChangeLog	2014-11-20 01:02:12 UTC (rev 176369)
+++ trunk/Source/WebKit2/ChangeLog	2014-11-20 01:16:11 UTC (rev 176370)
@@ -1,3 +1,10 @@
+2014-11-19  Timothy Horton  <[email protected]>
+
+        Fix the 32-bit build
+
+        * UIProcess/mac/TextIndicatorWindow.mm:
+        (WebKit::TextIndicatorWindow::setTextIndicator):
+
 2014-11-19  Tim Horton  <[email protected]>
 
         Add an optional entry transition (from selection highlight) to TextIndicator

Modified: trunk/Source/WebKit2/UIProcess/mac/TextIndicatorWindow.mm (176369 => 176370)


--- trunk/Source/WebKit2/UIProcess/mac/TextIndicatorWindow.mm	2014-11-20 01:02:12 UTC (rev 176369)
+++ trunk/Source/WebKit2/UIProcess/mac/TextIndicatorWindow.mm	2014-11-20 01:16:11 UTC (rev 176370)
@@ -296,7 +296,7 @@
     [m_textIndicatorWindow setOpaque:NO];
     [m_textIndicatorWindow setIgnoresMouseEvents:YES];
 
-    m_textIndicatorView = adoptNS([[WKTextIndicatorView alloc] initWithFrame:NSMakeRect(0, 0, [m_textIndicatorWindow frame].size.width, [m_textIndicatorWindow frame].size.height) textIndicator:m_textIndicator margin:CGSizeMake(horizontalMargin, verticalMargin)]);
+    m_textIndicatorView = adoptNS([[WKTextIndicatorView alloc] initWithFrame:NSMakeRect(0, 0, [m_textIndicatorWindow frame].size.width, [m_textIndicatorWindow frame].size.height) textIndicator:m_textIndicator margin:NSMakeSize(horizontalMargin, verticalMargin)]);
     [m_textIndicatorWindow setContentView:m_textIndicatorView.get()];
 
     [[m_wkView window] addChildWindow:m_textIndicatorWindow.get() ordered:NSWindowAbove];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to