Title: [163297] trunk/Source/WebKit2
Revision
163297
Author
m...@apple.com
Date
2014-02-03 01:31:53 -0800 (Mon, 03 Feb 2014)

Log Message

Build fix.

* WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:
(WebKit::convertStringToKeyCodes):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (163296 => 163297)


--- trunk/Source/WebKit2/ChangeLog	2014-02-03 09:16:54 UTC (rev 163296)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-03 09:31:53 UTC (rev 163297)
@@ -1,3 +1,10 @@
+2014-02-03  Dan Bernstein  <m...@apple.com>
+
+        Build fix.
+
+        * WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:
+        (WebKit::convertStringToKeyCodes):
+
 2014-02-03  Alberto Garcia  <be...@igalia.com>
 
         Fix wrong mix of fcntl commands and flags

Modified: trunk/Source/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm (163296 => 163297)


--- trunk/Source/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm	2014-02-03 09:16:54 UTC (rev 163296)
+++ trunk/Source/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm	2014-02-03 09:31:53 UTC (rev 163297)
@@ -986,7 +986,7 @@
     ByteCount maxOutputLength = string.length() * sizeof(UniChar);
 
     Vector<UInt8> outputData(maxOutputLength);
-    OSStatus status = ConvertFromUnicodeToText(textInfo, inputLength, string.characters(), kNilOptions, 0, 0, 0, 0, maxOutputLength, &inputRead, &outputLength, outputData.data());
+    OSStatus status = ConvertFromUnicodeToText(textInfo, inputLength, string.deprecatedCharacters(), kNilOptions, 0, 0, 0, 0, maxOutputLength, &inputRead, &outputLength, outputData.data());
     
     DisposeUnicodeToTextInfo(&textInfo);
     
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to