Title: [227172] trunk/Source/WebKitLegacy/mac
Revision
227172
Author
[email protected]
Date
2018-01-18 16:43:56 -0800 (Thu, 18 Jan 2018)

Log Message

Build fix, remove a call to -[NSWindow setOneShot:]
https://bugs.webkit.org/show_bug.cgi?id=181809

Reviewed by Tim Horton.

* WebView/WebTextCompletionController.mm:
(-[WebTextCompletionController _buildUI]):

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (227171 => 227172)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2018-01-19 00:25:48 UTC (rev 227171)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2018-01-19 00:43:56 UTC (rev 227172)
@@ -1,3 +1,13 @@
+2018-01-18  Alexey Proskuryakov  <[email protected]>
+
+        Build fix, remove a call to -[NSWindow setOneShot:]
+        https://bugs.webkit.org/show_bug.cgi?id=181809
+
+        Reviewed by Tim Horton.
+
+        * WebView/WebTextCompletionController.mm:
+        (-[WebTextCompletionController _buildUI]):
+
 2018-01-18  Ryan Haddad  <[email protected]>
 
         Unreviewed, suppress deprecation warnings to fix the build with a newer SDK.

Modified: trunk/Source/WebKitLegacy/mac/WebView/WebTextCompletionController.mm (227171 => 227172)


--- trunk/Source/WebKitLegacy/mac/WebView/WebTextCompletionController.mm	2018-01-19 00:25:48 UTC (rev 227171)
+++ trunk/Source/WebKitLegacy/mac/WebView/WebTextCompletionController.mm	2018-01-19 00:43:56 UTC (rev 227172)
@@ -117,7 +117,9 @@
     [_popupWindow setContentView:scrollView];
     [scrollView release];
     [_popupWindow setHasShadow:YES];
+#if __MAC_OS_X_VERSION_MIN_REQUIRED < 101400
     [_popupWindow setOneShot:YES];
+#endif
     [_popupWindow _setForceActiveControls:YES];
     [_popupWindow setReleasedWhenClosed:NO];
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to